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

Pic6[0] = 'banner26.jpg'
Pic6[1] = 'banner27.jpg'
Pic6[2] = 'banner28.jpg'
Pic6[3] = 'banner29.jpg'
Pic6[4] = 'banner30.jpg'

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