
var SlideShowSpeed = 3000;// de snelheid van de slideshow  (in milliseconden)
var CrossFadeDuration = 3;// duur van de crossfade (in seconden)
var Picture = new Array(); 
var Caption = new Array(); // hieronder kun je meer images toevoegen ze moeten echter gelijk zijn aan het aantal captions daaronder
Picture[1]  = 'afb/flh.jpg';
Picture[2]  = 'afb/koeien.jpg';
Picture[3]  = 'afb/f051707r.jpg';
Picture[4]  = 'afb/brink.jpg';
Picture[5]  = 'afb/vosseberg.jpg';
Picture[6]  = 'afb/bord_vossenberg.jpg';
Picture[7]  = 'afb/20.jpg';
Picture[8]  = 'afb/24.jpg';
Picture[9]  = 'afb/dorpwijster.jpg';
Picture[10] = 'afb/22.jpg';
Picture[11] = 'afb/bordjewijster.jpg';
Picture[12] = 'afb/26.jpg';
Picture[13] = 'afb/grafheuvel.jpg';
Picture[14] = 'afb/ree_in_bos.jpg';
Picture[15] = 'afb/ijsbaan.jpg';
Picture[16] = 'afb/stuw.jpg';
Picture[17] = 'afb/oude_diep.jpg';
// teksten bij de plaatjes ( aantal moet gelijk zijn aan aantal plaatjes hierboven )
Caption[1]  = " Het Schelpenpadtie ";
Caption[2]  = "Koeien bij het Marsbos . . . . .";
Caption[3]  = "Het Oude Diep . . . . .";
Caption[4]  = "De Brink . . . . . .";
Caption[5]  = "Het Reigerveen. . . . .";
Caption[6]  = "Landgoed de Vossenberg  . . . . . .";
Caption[7]  = "Monument aan de Beilerweg . . . . .";
Caption[8]  = "De Emelangen . . . .";
Caption[9]  = "De Sportlaan . . . . .";
Caption[10]  = "De Emelangen. . . . .";
Caption[11]  = "De Beilerweg  . . . . ."; 
Caption[12]  = "Nieuw gedeelte Vossenberg   . . . . ."; 
Caption[13]  = "Grafheuvel aan de Wijsterseweg. . ."; 
Caption[14]  = "Marsbos . . . ";
Caption[15]  = "het taaiven, 's winters de ijsbaan . . ."
Caption[16]  = "Stuw om waterhoogte te regelen. . ."
Caption[17]  = "wandelroute oude diep vanaf de Blinkerd"
var tss;
var iss;
var jss = 1;
var pss = Picture.length-1;
var preLoad = new Array();
for (iss = 1; iss < pss+1; iss++){
preLoad[iss] = new Image();
preLoad[iss].src = Picture[iss];}
function runSlideShow(){
if (document.all){
document.images.PictureBox.style.filter="blendTrans(duration=2)";
document.images.PictureBox.style.filter="blendTrans(duration=CrossFadeDuration)";
document.images.PictureBox.filters.blendTrans.Apply();}
document.images.PictureBox.src = preLoad[jss].src;
if (document.getElementById) document.getElementById("CaptionBox").innerHTML= Caption[jss];
if (document.all) document.images.PictureBox.filters.blendTrans.Play();
jss = jss + 1;
if (jss > (pss)) jss=1;
tss = setTimeout('runSlideShow()', SlideShowSpeed);
}
