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

PicKM7[ 0 ] = 'Fotoreeksen/2008_10_02 Seroka 1.JPG '
PicKM7[ 1 ] = 'Fotoreeksen/2008_10_02 Seroka 2.JPG '
PicKM7[ 2 ] = 'Fotoreeksen/2008_10_02 Seroka 3.JPG '
PicKM7[ 3 ] = 'Fotoreeksen/2008_10_02 Seroka 4.JPG '
PicKM7[ 4 ] = 'Fotoreeksen/2008_10_02 Seroka 5.JPG '
PicKM7[ 5 ] = 'Fotoreeksen/2008_10_02 Seroka 6.JPG '
PicKM7[ 6 ] = 'Fotoreeksen/2008_10_02 Seroka 7.JPG '
PicKM7[ 7 ] = 'Fotoreeksen/2008_10_02 Seroka 8.JPG '
PicKM7[ 8 ] = 'Fotoreeksen/2008_10_02 Seroka 9.JPG '
PicKM7[ 9 ] = 'Fotoreeksen/2008_10_02 Seroka 10.JPG '
PicKM7[ 10 ] = 'Fotoreeksen/2008_10_02 Seroka 11.JPG '
PicKM7[ 11 ] = 'Fotoreeksen/2008_10_02 Seroka 12.JPG '
PicKM7[ 12 ] = 'Fotoreeksen/2008_10_02 Seroka 13.JPG '
PicKM7[ 13 ] = 'Fotoreeksen/2008_10_02 Seroka 14.JPG '
PicKM7[ 14 ] = 'Fotoreeksen/2008_10_02 Seroka 15.JPG '
PicKM7[ 15 ] = 'Fotoreeksen/2008_10_02 Seroka 16.JPG '

// do not edit anything below this line
var tKM7;
var jKM7 = 0;
var pKM7 = PicKM7.length;
var preLoadKM7 = new Array();
for (iKM7 = 0; iKM7 < pKM7; iKM7++) {
preLoadKM7[iKM7] = new Image();
preLoadKM7[iKM7].src = PicKM7[iKM7];
}
function runSlideShowKM7() {
if (document.all) {
document.images.SlideShowKM7.style.filter="blendTrans(duration=2)";
document.images.SlideShowKM7.style.filter="blendTrans(duration=crossFadeDurationKM7)";
document.images.SlideShowKM7.filters.blendTrans.Apply ();
}
document.images.SlideShowKM7.src = preLoadKM7[jKM7].src;
if (document.all) {
document.images.SlideShowKM7.filters.blendTrans.Play( );
}
jKM7 = jKM7 + 1;
if (jKM7 > (pKM7 - 1)) jKM7 = 0;
tKM7 = setTimeout('runSlideShowKM7()', slideShowSpeedKM7);
}
// End --> 
