<!-- Begin
// Set slideShowSpeed (milliseconds)
var slideShowSpeed = 5000;
// Duration of crossfade (seconds)
var crossFadeDuration = 3;
// Specify the image files
var Pic_1 = new Array();
var Pic_2 = new Array();
var Pic_3 = new Array();
var Pic_4 = new Array();
var Pic_5 = new Array();
// to add more images, just continue
// the pattern, adding to the array below

Pic_1[0] = 'images/footer_banner/6a.gif'
Pic_1[1] = 'images/footer_banner/6b.gif'

Pic_2[0] = 'images/footer_banner/7a.gif'
Pic_2[1] = 'images/footer_banner/7b.gif'

Pic_3[0] = 'images/footer_banner/8a.gif'
Pic_3[1] = 'images/footer_banner/8b.gif'

Pic_4[0] = 'images/footer_banner/9a.gif'
Pic_4[1] = 'images/footer_banner/9b.gif'

Pic_5[0] = 'images/footer_banner/10a.gif'
Pic_5[1] = 'images/footer_banner/10b.gif'

// do not edit anything below this line
var t;
var j = 0;
var p1 = Pic_1.length;
var p2 = Pic_2.length;
var p3 = Pic_3.length;
var p4 = Pic_4.length;
var p5 = Pic_5.length;

var preLoad_1 = new Array();
var preLoad_2 = new Array();
var preLoad_3 = new Array();
var preLoad_4 = new Array();
var preLoad_5 = new Array();

for (i = 0; i < p1; i++) {
preLoad_1[i] = new Image();
preLoad_1[i].src = Pic_1[i];
}

for (i = 0; i < p2; i++) {
preLoad_2[i] = new Image();
preLoad_2[i].src = Pic_2[i];
}

for (i = 0; i < p3; i++) {
preLoad_3[i] = new Image();
preLoad_3[i].src = Pic_3[i];
}

for (i = 0; i < p4; i++) {
preLoad_4[i] = new Image();
preLoad_4[i].src = Pic_4[i];
}

for (i = 0; i < p5; i++) {
preLoad_5[i] = new Image();
preLoad_5[i].src = Pic_5[i];
}

function runSlideShow() {
if (document.all) {
document.images.SlideShow_1.style.filter="blendTrans(duration=2)";
document.images.SlideShow_1.style.filter="blendTrans(duration=crossFadeDuration)";
document.images.SlideShow_1.filters.blendTrans.Apply();
document.images.SlideShow_2.style.filter="blendTrans(duration=2)";
document.images.SlideShow_2.style.filter="blendTrans(duration=crossFadeDuration)";
document.images.SlideShow_2.filters.blendTrans.Apply();
document.images.SlideShow_3.style.filter="blendTrans(duration=2)";
document.images.SlideShow_3.style.filter="blendTrans(duration=crossFadeDuration)";
document.images.SlideShow_3.filters.blendTrans.Apply();
document.images.SlideShow_4.style.filter="blendTrans(duration=2)";
document.images.SlideShow_4.style.filter="blendTrans(duration=crossFadeDuration)";
document.images.SlideShow_4.filters.blendTrans.Apply();
document.images.SlideShow_5.style.filter="blendTrans(duration=2)";
document.images.SlideShow_5.style.filter="blendTrans(duration=crossFadeDuration)";
document.images.SlideShow_5.filters.blendTrans.Apply();

}
document.images.SlideShow_1.src = preLoad_1[j].src;
document.images.SlideShow_2.src = preLoad_2[j].src;
document.images.SlideShow_3.src = preLoad_3[j].src;
document.images.SlideShow_4.src = preLoad_4[j].src;
document.images.SlideShow_5.src = preLoad_5[j].src;
if (document.all) {
document.images.SlideShow_1.filters.blendTrans.Play();
document.images.SlideShow_2.filters.blendTrans.Play();
document.images.SlideShow_3.filters.blendTrans.Play();
document.images.SlideShow_4.filters.blendTrans.Play();
document.images.SlideShow_5.filters.blendTrans.Play();
}
j = j + 1;
if (j > (p1 - 1)) j = 0;
t = setTimeout('runSlideShow()', slideShowSpeed);
}


