<!-- Begin
// Set slideShowSpeed (milliseconds)
var FlashShowSpeed = 1500;
// Duration of crossfade (seconds)
var FlashFadeDuration = 2;
// Specify the image files
var Flash = new Array();
// to add more images, just continue
// the pattern, adding to the array below

Flash[0] = 'images/ProductFlash/F1.jpg'
Flash[1] = 'images/ProductFlash/F9.jpg'
Flash[2] = 'images/ProductFlash/F33.jpg'
Flash[3] = 'images/ProductFlash/F4.jpg'
Flash[4] = 'images/ProductFlash/F12.jpg'
Flash[5] = 'images/ProductFlash/F6.jpg'
Flash[6] = 'images/ProductFlash/F7.jpg'
Flash[7] = 'images/ProductFlash/F2.jpg'
Flash[8] = 'images/ProductFlash/F21.jpg'
Flash[9] = 'images/ProductFlash/F23.jpg'
Flash[10] = 'images/ProductFlash/F11.jpg'
Flash[11] = 'images/ProductFlash/F18.jpg'
Flash[12] = 'images/ProductFlash/F13.jpg'
Flash[13] = 'images/ProductFlash/F14.jpg'
Flash[14] = 'images/ProductFlash/F15.jpg'
Flash[15] = 'images/ProductFlash/F16.jpg'
Flash[16] = 'images/ProductFlash/F17.jpg'
Flash[17] = 'images/ProductFlash/F22.jpg'
Flash[18] = 'images/ProductFlash/F19.jpg'
Flash[19] = 'images/ProductFlash/F20.jpg'
Flash[20] = 'images/ProductFlash/F24.jpg'
Flash[21] = 'images/ProductFlash/F8.jpg'
Flash[22] = 'images/ProductFlash/F10.jpg'
Flash[23] = 'images/ProductFlash/F5.jpg'
Flash[24] = 'images/ProductFlash/F25.jpg'
Flash[25] = 'images/ProductFlash/F3.jpg'
Flash[26] = 'images/ProductFlash/F27.jpg'
Flash[27] = 'images/ProductFlash/F28.jpg'
Flash[28] = 'images/ProductFlash/F29.jpg'
Flash[29] = 'images/ProductFlash/F30.jpg'
Flash[30] = 'images/ProductFlash/F31.jpg'

// do not edit anything below this line
var t2;
var j2 = 0;
var p2 = Flash.length;
var preLoad = new Array();
for (i2 = 0; i2 < p2; i2++) {
preLoad[i2] = new Image();
preLoad[i2].src = Flash[i2];
}
function runSlideShow() {
if (document.all) {
document.images.SlideShow.style.filter="blendTrans(duration=2)";
document.images.SlideShow.style.filter="blendTrans(duration=FlashFadeDuration)";
document.images.SlideShow.filters.blendTrans.Apply();
}
document.images.SlideShow.src = preLoad[j2].src;
if (document.all) {
document.images.SlideShow.filters.blendTrans.Play();
}
j2 = j2 + 1;
if (j2 > (p2 - 1)) j2 = 0;
t2 = setTimeout('runSlideShow()', FlashShowSpeed);
}
//  End -->

