// JavaScript Document
<!-- Begin
// Set slideShowSpeed (milliseconds)
var slideShowSpeedKM2 = 4000;
// Duration of crossfade (seconds)
var crossFadeDurationKM2 = 9;
// Specify the image files
var PicKM2 = new Array();
// to add more images, just continue
// the pattern, adding to the array below

PicKM2[ 0 ] = 'Fotoreeksen/2008_12_06 Kerstconcert 1.JPG '
PicKM2[ 1 ] = 'Fotoreeksen/2008_12_06 Kerstconcert 2.JPG '
PicKM2[ 2 ] = 'Fotoreeksen/2008_12_06 Kerstconcert 3.JPG '
PicKM2[ 3 ] = 'Fotoreeksen/2008_12_06 Kerstconcert 4.JPG '
PicKM2[ 4 ] = 'Fotoreeksen/2008_12_06 Kerstconcert 5.JPG '
PicKM2[ 5 ] = 'Fotoreeksen/2008_12_06 Kerstconcert 6.JPG '
PicKM2[ 6 ] = 'Fotoreeksen/2008_12_06 Kerstconcert 7.JPG '
PicKM2[ 7 ] = 'Fotoreeksen/2008_12_06 Kerstconcert 8.JPG '
PicKM2[ 8 ] = 'Fotoreeksen/2008_12_06 Kerstconcert 9.JPG '
PicKM2[ 9 ] = 'Fotoreeksen/2008_12_06 Kerstconcert 10.JPG '
PicKM2[ 10 ] = 'Fotoreeksen/2008_12_06 Kerstconcert 11.JPG '
PicKM2[ 11 ] = 'Fotoreeksen/2008_12_06 Kerstconcert 12.JPG '
PicKM2[ 12 ] = 'Fotoreeksen/2008_12_06 Kerstconcert 13.JPG '
PicKM2[ 13 ] = 'Fotoreeksen/2008_12_06 Kerstconcert 14.JPG '
PicKM2[ 14 ] = 'Fotoreeksen/2008_12_06 Kerstconcert 15.JPG '

// do not edit anything below this line
var tKM2;
var jKM2 = 0;
var pKM2 = PicKM2.length;
var preLoadKM2 = new Array();
for (iKM2 = 0; iKM2 < pKM2; iKM2++) {
preLoadKM2[iKM2] = new Image();
preLoadKM2[iKM2].src = PicKM2[iKM2];
}
function runSlideShowKM2() {
if (document.all) {
document.images.SlideShowKM2.style.filter="blendTrans(duration=2)";
document.images.SlideShowKM2.style.filter="blendTrans(duration=crossFadeDurationKM2)";
document.images.SlideShowKM2.filters.blendTrans.Apply ();
}
document.images.SlideShowKM2.src = preLoadKM2[jKM2].src;
if (document.all) {
document.images.SlideShowKM2.filters.blendTrans.Play( );
}
jKM2 = jKM2 + 1;
if (jKM2 > (pKM2 - 1)) jKM2 = 0;
tKM2 = setTimeout('runSlideShowKM2()', slideShowSpeedKM2);
}
// End --> 
