 

// This sets the slideShowSpeed (in milliseconds)
var slideShowSpeed = 2000;
// This sets the duration of the crossfade (in seconds)
var crossFadeDuration = 2;
// Specifies the image files
var Pic = new Array();
// to add more images, just continue
// the pattern, adding to the array below
// be sure to identify the path as well as image name
// and be sure to rename your first image within the html tags

Pic[0] = 'ProductImages/flashpics/picture1.jpg'
Pic[1] = 'ProductImages/flashpics/picture2.jpg'
Pic[2] = 'ProductImages/flashpics/picture3.jpg'
Pic[3] = 'ProductImages/flashpics/picture4.jpg'
Pic[4] = 'ProductImages/flashpics/picture5.jpg'
Pic[5] = 'ProductImages/flashpics/picture6.jpg'
Pic[6] = 'ProductImages/flashpics/picture7.jpg'
Pic[7] = 'ProductImages/flashpics/picture8.jpg'
Pic[8] = 'ProductImages/flashpics/picture9.jpg'
//Pic[9] = 'ProductImages/flashpics/picture10.jpg'

// please 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.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[j].src;
if (document.all) {
document.images.SlideShow.filters.blendTrans.Play();
}
j = j + 1;
if (j > (p - 1)) j = 0;
t = setTimeout('runSlideShow()', slideShowSpeed);
}
