<!-- AFSCHERMEN VOOR OUDE BROWSERS


// BEGIN GEGEVENS EN FUNCTIE VOOR FOTOSERIE A
var rondeA = 6;           // dit getal staat voor het aantal keer dat de fotoserie met een klik wordt vertoond 
var snelheidA = 4000;      // dit getal staat voor de tijd van elke getoonde foto in milliseconden
var FotoosA = new Array()  // niets veranderen
// hieronder staan de fotoos van je fotoserie A, je kunt deze lijst verkorten zowel als verlengen
FotoosA[0] = 'images/ontwerp_06a_01.jpg';
FotoosA[1] = 'images/ontwerp_06b_01.jpg';
FotoosA[2] = 'images/ontwerp_06c_01.jpg';
FotoosA[3] = 'images/ontwerp_06d_01.jpg';
FotoosA[4] = 'images/ontwerp_06e_01.jpg';
FotoosA[5] = 'images/ontwerp_06f_01.jpg';
FotoosA[6] = 'images/ontwerp_06g_01.jpg';
FotoosA[7] = 'images/ontwerp_06h_01.jpg';
FotoosA[8] = 'images/ontwerp_06i_01.jpg';
FotoosA[9] = 'images/ontwerp_06j_01.jpg';

// hieronder niets veranderen
var aantalfotoosA = FotoosA.length;
var tijdsduurA;
var indexnummerA = 0;
var hulptellerA = 0;
function runFotoserieA(){
    if (hulptellerA < ((rondeA * aantalfotoosA) + 1)){
        if (document.all){
           document.images.FotoserieA.style.filter="blendTrans(duration=2)";
           document.images.FotoserieA.filters.blendTrans.Apply()
        }
        document.images.FotoserieA.src = FotoosA[indexnummerA];
        if (document.all){
           document.images.FotoserieA.filters.blendTrans.Play()
        }
        indexnummerA = indexnummerA + 1;
        hulptellerA = hulptellerA + 1;
        if (indexnummerA > (aantalfotoosA - 1)) {indexnummerA = 0}
        tijdsduurA = setTimeout('runFotoserieA()', snelheidA)
    }
    else {indexnummerA = 0; hulptellerA = 0}
}
// EINDE GEGEVENS EN FUNCTIE VOOR FOTOSERIE A


// BEGIN GEGEVENS EN FUNCTIE VOOR FOTOSERIE xxx
// Alles kopieren en de xxx vevangen door een letter en er is een nieuwe fotoserie.
var rondexxx = 3;           // dit getal staat voor het aantal keer dat de fotoserie met een klik wordt vertoond 
var snelheidxxx = 8000;      // dit getal staat voor de tijd van elke getoonde foto in milliseconden
var Fotoosxxx = new Array()  // niets veranderen
// hieronder staan de fotoos van je fotoserie xxx, je kunt deze lijst verkorten zowel als verlengen
Fotoosxxx[0] = 'images/ontwerp_06a_01.jpg';
Fotoosxxx[1] = 'images/ontwerp_06b_01.jpg';
Fotoosxxx[2] = 'images/ontwerp_06c_01.jpg';
// hieronder niets veranderen
var aantalfotoosxxx = Fotoosxxx.length;
var tijdsduurxxx;
var indexnummerxxx = 0;
var hulptellerxxx = 0;
function runFotoseriexxx(){
    if (hulptellerxxx < ((rondexxx * aantalfotoosxxx) + 1)){
        if (document.all){
           document.images.Fotoseriexxx.style.filter="blendTrans(duration=2)";
           document.images.Fotoseriexxx.filters.blendTrans.Apply()
        }
        document.images.Fotoseriexxx.src = Fotoosxxx[indexnummerxxx];
        if (document.all){
           document.images.Fotoseriexxx.filters.blendTrans.Play()
        }
        indexnummerxxx = indexnummerxxx + 1;
        hulptellerxxx = hulptellerxxx + 1;
        if (indexnummerxxx > (aantalfotoosxxx - 1)) {indexnummerxxx = 0}
        tijdsduurxxx = setTimeout('runFotoseriexxx()', snelheidxxx)
    }
    else {indexnummerxxx = 0; hulptellerxxx = 0}
}
// EINDE GEGEVENS EN FUNCTIE VOOR FOTOSERIE xxx
