

// hier de snelheid van de slideshow  (in milliseconden)
var SlideShowSpeed = 5000;

// duur van de crossfade (in seconden)
var CrossFadeDuration = 2;

var Picture = new Array(); //
var Caption = new Array(); //

// hieonder kun je meer images tovoegen
// ze moeten echter gelijk zijn aan het aantal captions daaronder

Picture[1]   = 'http://www.evanwijk.com/img_layout/pic_header1.jpg';
Picture[2]   = 'http://www.evanwijk.com/img_layout/pic_header2.jpg';
Picture[3]   = 'http://www.evanwijk.com/img_layout/pic_header3.jpg';
Picture[4]   = 'http://www.evanwijk.com/img_layout/pic_header4.jpg';
Picture[5]   = 'http://www.evanwijk.com/img_layout/pic_header5.jpg';
Picture[6]   = 'http://www.evanwijk.com/img_layout/pic_header6.jpg';
Picture[7]   = 'http://www.evanwijk.com/img_layout/pic_header7.jpg';
Picture[8]   = 'http://www.evanwijk.com/img_layout/pic_header8.jpg';
Picture[9]   = 'http://www.evanwijk.com/img_layout/pic_header9.jpg';
Picture[10]  = 'http://www.evanwijk.com/img_layout/pic_header10.jpg';
Picture[11]  = 'http://www.evanwijk.com/img_layout/pic_header11.jpg';
Picture[12]  = 'http://www.evanwijk.com/img_layout/pic_header12.jpg';


// teksten bij de plaatjes ( aantal moet gelijk zijn aan aantal plaatjes hierboven )




// =====================================
// verander hieronder niets meer

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.all) document.images.PictureBox.filters.blendTrans.Play();
jss = jss + 1;
if (jss > (pss)) jss=1;
tss = setTimeout('runSlideShow()', SlideShowSpeed);
}