// JavaScript Document
<!-- Begin
// Set slideShowSpeed (milliseconds)
var slideShowSpeedKM6 = 3600;
// Duration of crossfade (seconds)
var crossFadeDurationKM6 = 10;
// Specify the image files
var PicKM6 = new Array();
// to add more images, just continue
// the pattern, adding to the array below

PicKM6[ 0 ] = 'Fotoreeksen/2008_12_13 Alamire 1.JPG '
PicKM6[ 1 ] = 'Fotoreeksen/2008_12_13 Alamire 2.JPG '
PicKM6[ 2 ] = 'Fotoreeksen/2008_12_13 Alamire 3.JPG '
PicKM6[ 3 ] = 'Fotoreeksen/2008_12_13 Alamire 4.JPG '
PicKM6[ 4 ] = 'Fotoreeksen/2008_12_13 Alamire 5.JPG '
PicKM6[ 5 ] = 'Fotoreeksen/2008_12_13 Alamire 6.JPG '
PicKM6[ 6 ] = 'Fotoreeksen/2008_12_13 Alamire 7.JPG '
PicKM6[ 7 ] = 'Fotoreeksen/2008_12_13 Alamire 8.JPG '
PicKM6[ 8 ] = 'Fotoreeksen/2008_12_13 Alamire 9.JPG '

// do not edit anything below this line
var tKM6;
var jKM6 = 0;
var pKM6 = PicKM6.length;
var preLoadKM6 = new Array();
for (iKM6 = 0; iKM6 < pKM6; iKM6++) {
preLoadKM6[iKM6] = new Image();
preLoadKM6[iKM6].src = PicKM6[iKM6];
}
function runSlideShowKM6() {
if (document.all) {
document.images.SlideShowKM6.style.filter="blendTrans(duration=2)";
document.images.SlideShowKM6.style.filter="blendTrans(duration=crossFadeDurationKM6)";
document.images.SlideShowKM6.filters.blendTrans.Apply ();
}
document.images.SlideShowKM6.src = preLoadKM6[jKM6].src;
if (document.all) {
document.images.SlideShowKM6.filters.blendTrans.Play( );
}
jKM6 = jKM6 + 1;
if (jKM6 > (pKM6 - 1)) jKM6 = 0;
tKM6 = setTimeout('runSlideShowKM6()', slideShowSpeedKM6);
}
// End --> 
