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

PicKM3[ 0 ] = 'Fotoreeksen/2008_04_25 Concert Els Biesemans 1.JPG '
PicKM3[ 1 ] = 'Fotoreeksen/2008_04_25 Concert Els Biesemans 2.JPG '
PicKM3[ 2 ] = 'Fotoreeksen/2008_04_25 Concert Els Biesemans 3.JPG '
PicKM3[ 3 ] = 'Fotoreeksen/2008_04_25 Concert Els Biesemans 4.JPG '
PicKM3[ 4 ] = 'Fotoreeksen/2008_04_25 Concert Els Biesemans 5.JPG '
PicKM3[ 5 ] = 'Fotoreeksen/2008_04_25 Concert Els Biesemans 6.JPG '

// do not edit anything below this line
var tKM3;
var jKM3 = 0;
var pKM3 = PicKM3.length;
var preLoadKM3 = new Array();
for (iKM3 = 0; iKM3 < pKM3; iKM3++) {
preLoadKM3[iKM3] = new Image();
preLoadKM3[iKM3].src = PicKM3[iKM3];
}
function runSlideShowKM3() {
if (document.all) {
document.images.SlideShowKM3.style.filter="blendTrans(duration=2)";
document.images.SlideShowKM3.style.filter="blendTrans(duration=crossFadeDurationKM3)";
document.images.SlideShowKM3.filters.blendTrans.Apply ();
}
document.images.SlideShowKM3.src = preLoadKM3[jKM3].src;
if (document.all) {
document.images.SlideShowKM3.filters.blendTrans.Play( );
}
jKM3 = jKM3 + 1;
if (jKM3 > (pKM3 - 1)) jKM3 = 0;
tKM3 = setTimeout('runSlideShowKM3()', slideShowSpeedKM3);
}
// End --> 
