<!-- Begin
// Set slideShowSpeed (milliseconds)
var slideShowSpeed = 5000;
// Duration of crossfade (seconds)
var crossFadeDuration = 3;
// Specify the image files
var Pic = new Array("reports/photos/image1.jpg", 
                       "reports/photos/image2.jpg", 
                       "reports/photos/image3.jpg" );;
// to add more images, just continue
// the pattern, adding to the array below

// do not edit anything below this line
var t;

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() {
var rand1 = Math.floor(Math.random() * Pic.length)
document.images.SlideShow.style.filter="blendTrans(duration=2)";
document.images.SlideShow.style.filter="blendTrans(duration=crossFadeDuration)";
document.images.SlideShow.filters.blendTrans.Apply();

document.images.SlideShow.src = preLoad[rand1].src;
if (document.all) {
document.images.SlideShow.filters.blendTrans.Play();
}

t = setTimeout('runSlideShow()', slideShowSpeed);
}
//  End -->


