<!-- 

var endslide=0;

// Set slideShowSpeed (milliseconds)
var slideShowSpeed = 6000;

// Duration of crossfade (seconds)
var crossFadeDuration = 3;

// Specify the image files
var Pic = new Array();
Pic[0] = '/theshed/images/shed_topgallery1.jpg';
Pic[1] = '/theshed/images/shed_topgallery2.jpg';
Pic[2] = '/theshed/images/shed_topgallery3.jpg';
Pic[3] = '/theshed/images/shed_topgallery4.jpg';
Pic[4] = '/theshed/images/shed_topgallery5.jpg';
Pic[5] = '/theshed/images/shed_topgallery6.jpg';
Pic[6] = '/theshed/images/shed_topgallery7.jpg';
Pic[7] = '/theshed/images/shed_topgallery8.jpg';
Pic[8] = '/theshed/images/shed_topgallery9.jpg';


// do not edit anything below this line
var t;
var j = 0;
var p = Pic.length;
var preLoad = new Array();
for (i = 0; i < p; i++) {
preLoad[i] = new Image();
preLoad[i].src = Pic[i];
}

function runSlideShow() {

if (document.slidesettings.endfade.value == 1) return;
if (document.all) {
document.images.SlideShow.style.filter="blendTrans(duration=2)";
document.images.SlideShow.style.filter="blendTrans(duration=crossFadeDuration)";
document.SlideShow.filters.blendTrans.Apply();
}
document.images.SlideShow.src = preLoad[j].src;
if (document.all) {
document.images.SlideShow.filters.blendTrans.Play();
}
j = j + 1;
if (j > (p - 1)) j = 0;
t = setTimeout('runSlideShow()', slideShowSpeed);
}

function endfade() {
document.slidesettings.endfade.value = 1;
}


//--> 
