var slideShowSpeed2 = 5000;
// Duration of crossfade (seconds)
var crossFadeDuration2 = 3;
// Specify the image files

var a=document.getElementById('SlideShow2');

var Pic1 = new Array();
// to add more images, just continue
// the pattern, adding to the array below

Pic1[0] = 'toppers/1.jpg'
Pic1[1] = 'toppers/2.jpg'
Pic1[2] = 'toppers/3.jpg'
Pic1[3] = 'toppers/4.jpg'
Pic1[4] = 'toppers/5.jpg'
Pic1[5] = 'toppers/6.jpg'
Pic1[6] = 'toppers/7.jpg'
Pic1[7] = 'toppers/8.jpg'

// do not edit anything below this line
var t1;
var j1 = 0;
var p1 = Pic1.length;
var preLoad1 = new Array();
for (i = 0; i < p1; i++) {
preLoad1[i] = new Image();
preLoad1[i].src = Pic1[i];
function runSlideShow2() {
if (document.all) {
a.style.filter="blendTrans(duration=2)";
a.style.filter="blendTrans(duration=crossFadeDuration2)";
a.filters.blendTrans.Apply();
}
a.src = preLoad1[j1].src;
if (document.all) {
a.filters.blendTrans.Play();
}
j1 = j1 + 1;
if (j1 > (p1 - 1)) j1 = 0;
t1 = setTimeout('runSlideShow2()', slideShowSpeed2);
}
