// JavaScript Document
<!-- Begin
// Set slideShowSpeed (milliseconds)
var slideShowSpeedKM4 = 5000;
// Duration of crossfade (seconds)
var crossFadeDurationKM4 = 8;
// Specify the image files
var PicKM4 = new Array();
// to add more images, just continue
// the pattern, adding to the array below

PicKM4[ 0 ] = 'Fotoreeksen/2008_03_04 Gospelkkoor Chananja 1.JPG '
PicKM4[ 1 ] = 'Fotoreeksen/2008_03_04 Gospelkkoor Chananja 2.JPG '
PicKM4[ 2 ] = 'Fotoreeksen/2008_03_04 Gospelkkoor Chananja 3.JPG '
PicKM4[ 3 ] = 'Fotoreeksen/2008_03_04 Gospelkkoor Chananja 4.JPG '
PicKM4[ 4 ] = 'Fotoreeksen/2008_03_04 Gospelkkoor Chananja 5.JPG '

// do not edit anything below this line
var tKM4;
var jKM4 = 0;
var pKM4 = PicKM4.length;
var preLoadKM4 = new Array();
for (iKM4 = 0; iKM4 < pKM4; iKM4++) {
preLoadKM4[iKM4] = new Image();
preLoadKM4[iKM4].src = PicKM4[iKM4];
}
function runSlideShowKM4() {
if (document.all) {
document.images.SlideShowKM4.style.filter="blendTrans(duration=2)";
document.images.SlideShowKM4.style.filter="blendTrans(duration=crossFadeDurationKM4)";
document.images.SlideShowKM4.filters.blendTrans.Apply ();
}
document.images.SlideShowKM4.src = preLoadKM4[jKM4].src;
if (document.all) {
document.images.SlideShowKM4.filters.blendTrans.Play( );
}
jKM4 = jKM4 + 1;
if (jKM4 > (pKM4 - 1)) jKM4 = 0;
tKM4 = setTimeout('runSlideShowKM4()', slideShowSpeedKM4);
}
// End --> 
