// JavaScript Document
<!-- Begin
// Set slideShowSpeed (milliseconds)
var slideShowSpeedKM1 = 4500;
// Duration of crossfade (seconds)
var crossFadeDurationKM1 = 7;
// Specify the image files
var PicKM1 = new Array();
// to add more images, just continue
// the pattern, adding to the array below

PicKM1[ 0 ] = 'Fotoreeksen/2009_03_20 Frank Heye 1.JPG '
PicKM1[ 1 ] = 'Fotoreeksen/2009_03_20 Frank Heye 2.JPG '
PicKM1[ 2 ] = 'Fotoreeksen/2009_03_20 Frank Heye 3.JPG '
PicKM1[ 3 ] = 'Fotoreeksen/2009_03_20 Frank Heye 4.JPG '
PicKM1[ 4 ] = 'Fotoreeksen/2009_03_20 Frank Heye 5.JPG '
PicKM1[ 5 ] = 'Fotoreeksen/2009_03_20 Frank Heye 6.JPG '
PicKM1[ 6 ] = 'Fotoreeksen/2009_03_20 Frank Heye 7.JPG '
PicKM1[ 7 ] = 'Fotoreeksen/2009_03_20 Frank Heye 8.JPG '
PicKM1[ 8 ] = 'Fotoreeksen/2009_03_20 Frank Heye 9.JPG '

// do not edit anything below this line
var tKM1;
var jKM1 = 0;
var pKM1 = PicKM1.length;
var preLoadKM1 = new Array();
for (iKM1 = 0; iKM1 < pKM1; iKM1++) {
preLoadKM1[iKM1] = new Image();
preLoadKM1[iKM1].src = PicKM1[iKM1];
}
function runSlideShowKM1() {
if (document.all) {
document.images.SlideShowKM1.style.filter="blendTrans(duration=2)";
document.images.SlideShowKM1.style.filter="blendTrans(duration=crossFadeDurationKM1)";
document.images.SlideShowKM1.filters.blendTrans.Apply ();
}
document.images.SlideShowKM1.src = preLoadKM1[jKM1].src;
if (document.all) {
document.images.SlideShowKM1.filters.blendTrans.Play( );
}
jKM1 = jKM1 + 1;
if (jKM1 > (pKM1 - 1)) jKM1 = 0;
tKM1 = setTimeout('runSlideShowKM1()', slideShowSpeedKM1);
}
// End --> 
