// Set slideShowSpeed (milliseconds)
var slideShowSpeed = 2500;
// Duration of crossfade (seconds)
var crossFadeDuration = 4;
// Specify the image files
var Pic = new Array();
// to add more images, just continue
// the pattern, adding to the array below

Pic[0] = 'imgs/flash-pic.jpg'
Pic[1] = 'imgs/flash-pic1.jpg'
Pic[2] = 'imgs/flash-pic2.jpg'
Pic[3] = 'imgs/flash-pic3.jpg'
// do not edit anything below this line
var t;
var ja = 0;
var p = Pic.length;
var preLoad = new Array();
for (ia = 0; ia < p; ia++) {
preLoad[ia] = new Image();
preLoad[ia].src = Pic[ia];
}
function runSlideShow() {
if (document.all) {
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[ja].src;
if (document.all) {
document.images.SlideShow.filters.blendTrans.Play();
}
ja = ja + 1;
if (ja > (p - 1)) ja = 0;
t = setTimeout('runSlideShow()', slideShowSpeed);
}

//  End -->

