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

Pic5[0] = 'banner21.jpg'
Pic5[1] = 'banner22.jpg'
Pic5[2] = 'banner23.jpg'
Pic5[3] = 'banner24.jpg'
Pic5[4] = 'banner25.jpg'


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