// JavaScript Document
<!-- Begin
// Set slideShowSpeed (milliseconds)
var slideShowSpeedKM5 = 2600;
// Duration of crossfade (seconds)
var crossFadeDurationKM5 = 6;
// Specify the image files
var PicKM5 = new Array();
// to add more images, just continue
// the pattern, adding to the array below

PicKM5[ 0 ] = 'Fotoreeksen/2008_10_19 Willem Vermandere 1.JPG '
PicKM5[ 1 ] = 'Fotoreeksen/2008_10_19 Willem Vermandere 2.JPG '
PicKM5[ 2 ] = 'Fotoreeksen/2008_10_19 Willem Vermandere 3.JPG '
PicKM5[ 3 ] = 'Fotoreeksen/2008_10_19 Willem Vermandere 4.JPG '
PicKM5[ 4 ] = 'Fotoreeksen/2008_10_19 Willem Vermandere 5.JPG '
PicKM5[ 5 ] = 'Fotoreeksen/2008_10_19 Willem Vermandere 6.JPG '
PicKM5[ 6 ] = 'Fotoreeksen/2008_10_19 Willem Vermandere 7.JPG '
PicKM5[ 7 ] = 'Fotoreeksen/2008_10_19 Willem Vermandere 8.JPG '
PicKM5[ 8 ] = 'Fotoreeksen/2008_10_19 Willem Vermandere 9.JPG '
PicKM5[ 9 ] = 'Fotoreeksen/2008_10_19 Willem Vermandere 10.JPG '
PicKM5[ 10 ] = 'Fotoreeksen/2008_10_19 Willem Vermandere 11.JPG '
PicKM5[ 11 ] = 'Fotoreeksen/2008_10_19 Willem Vermandere 12.JPG '
PicKM5[ 12 ] = 'Fotoreeksen/2008_10_19 Willem Vermandere 13.JPG '
PicKM5[ 13 ] = 'Fotoreeksen/2008_10_19 Willem Vermandere 14.JPG '
PicKM5[ 14 ] = 'Fotoreeksen/2008_10_19 Willem Vermandere 15.JPG '
PicKM5[ 15 ] = 'Fotoreeksen/2008_10_19 Willem Vermandere 16.JPG '
PicKM5[ 16 ] = 'Fotoreeksen/2008_10_19 Willem Vermandere 17.JPG '
PicKM5[ 17 ] = 'Fotoreeksen/2008_10_19 Willem Vermandere 18.JPG '
PicKM5[ 18 ] = 'Fotoreeksen/2008_10_19 Willem Vermandere 19.JPG '
PicKM5[ 19 ] = 'Fotoreeksen/2008_10_19 Willem Vermandere 20.JPG '
PicKM5[ 20 ] = 'Fotoreeksen/2008_10_19 Willem Vermandere 21.JPG '
PicKM5[ 21 ] = 'Fotoreeksen/2008_10_19 Willem Vermandere 22.JPG '
PicKM5[ 22 ] = 'Fotoreeksen/2008_10_19 Willem Vermandere 23.JPG '
PicKM5[ 23 ] = 'Fotoreeksen/2008_10_19 Willem Vermandere 24.JPG '

// do not edit anything below this line
var tKM5;
var jKM5 = 0;
var pKM5 = PicKM5.length;
var preLoadKM5 = new Array();
for (iKM5 = 0; iKM5 < pKM5; iKM5++) {
preLoadKM5[iKM5] = new Image();
preLoadKM5[iKM5].src = PicKM5[iKM5];
}
function runSlideShowKM5() {
if (document.all) {
document.images.SlideShowKM5.style.filter="blendTrans(duration=2)";
document.images.SlideShowKM5.style.filter="blendTrans(duration=crossFadeDurationKM5)";
document.images.SlideShowKM5.filters.blendTrans.Apply ();
}
document.images.SlideShowKM5.src = preLoadKM5[jKM5].src;
if (document.all) {
document.images.SlideShowKM5.filters.blendTrans.Play( );
}
jKM5 = jKM5 + 1;
if (jKM5 > (pKM5 - 1)) jKM5 = 0;
tKM5 = setTimeout('runSlideShowKM5()', slideShowSpeedKM5);
}
// End --> 
