// JavaScript Document
<!--
<!-- Begin
// Set slideShowSpeed (milliseconds)
var slideShowSpeed = 5000;
// Duration of crossfade (seconds)
var crossFadeDuration = 3;
// Specify the image files
var Pic4 = new Array();
// to add more images, just continue
// the pattern, adding to the array below

Pic4[0] = 'banner16.jpg'
Pic4[1] = 'banner17.jpg'
Pic4[2] = 'banner18.jpg'
Pic4[3] = 'banner19.jpg'
Pic4[4] = 'banner20.jpg'


// do not edit anything below this line
var t;
var j4 = 0;
var p = Pic.length;
var preLoad4 = new Array();
for (i = 0; i < p; i++) {
preLoad4[i] = new Image();
preLoad4[i].src = Pic4[i];
}
function runSlideShow4() {
if (document.all) {
document.images.SlideShow4.style.filter="blendTrans(duration=2)";
document.images.SlideShow4.style.filter="blendTrans(duration=crossFadeDuration)";
document.images.SlideShow4.filters.blendTrans.Apply();
}
document.images.SlideShow4.src = preLoad4[j4].src;
if (document.all) {
document.images.SlideShow4.filters.blendTrans.Play();
}
j4 = j4 + 1;
if (j4 > (p - 1)) j4 = 0;
t = setTimeout('runSlideShow4()', slideShowSpeed);
}