
// Set slideShowSpeed (milliseconds)
var slideShowSpeed1 = 5000;
// Duration of crossfade (seconds)
var crossFadeDuration1 = 5;
// Specify the image files
var Pics = new Array();
// to add more images, just continue
// the pattern, adding to the array below
//alert(ScWidth);
Pics[0] = 'gifs/img1.gif';
Pics[1] = 'gifs/img2.gif';
Pics[2] = 'gifs/img3.gif';

// do not edit anything below this line

var t1;
var j1 = 0,k1=0;
var p1 = Pics.length;
var preLoad1 = new Array();

for (i1 = 0; i1 < p1; i1++) {
preLoad1[i1] = new Image();
preLoad1[i1].src = Pics[i1];
}

function runSlideShow1() {
if (document.all) {
document.images.ShowMe.style.filter="revealTrans(duration=2)";
document.images.ShowMe.style.filter="revealTrans(duration=1,transition=12)";
document.images.ShowMe.filters.revealTrans.Apply();
}
document.images.ShowMe.src = preLoad1[j1].src;
if (document.all) {
document.images.ShowMe.filters.revealTrans.Play();
}
j1 = j1 + 1;
if(j1>2)
j1=0;
//k = k + 1;
//if (j > (q - 1))j = 0;
//if(k>(p-1)) k=0;
//{
//}
t1 = setTimeout('runSlideShow1()', slideShowSpeed1);
}
