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

Pic3[0] = 'banner11.jpg'
Pic3[1] = 'banner12.jpg'
Pic3[2] = 'banner13.jpg'
Pic3[3] = 'banner14.jpg'
Pic3[4] = 'banner15.jpg'


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