<!-- Begin
// Set slideShowSpeed (milliseconds)
var slideShowSpeed = 3000;
// Duration of crossfade (seconds)
var crossFadeDuration = 10;
// Specify the image files
var Pic = new Array();
var Picbg = new Array();
Pic[0] = 'images/big-elephant.jpg'
Pic[1] = 'images/big-lion.jpg'
Pic[2] = 'images/big-rhino.jpg'
Pic[3] = 'images/butterfly-bigs.jpg'
Pic[4] = 'images/indian-lion-big.jpg'
Picbg[0] = 'images/elephant-bgs.jpg'	
Picbg[1] = 'images/jungle-sml.jpg'	
Picbg[2] = 'images/sml-rhinos.jpg'	
Picbg[3] = 'images/butterfly-smls.jpg'	
Picbg[4] = 'images/indian-lion-sml.jpg'	

// do not edit anything below this line
var t;
var j = 0;
var p = Pic.length;
var preLoad = new Array();
var preLoadBg = new Array();		// for bg

for (i = 0; i < p; i++) {
preLoad[i] = new Image();
preLoad[i].src = Pic[i];
preLoadBg[i] = Picbg[i];				// for bg

}

function runSlideShow() {
if (document.all) {
document.images.SlideShow.style.filter="blendTrans(duration=2)";
document.images.SlideShow.style.filter="blendTrans(duration=crossFadeDuration)";
document.images.SlideShow.filters.blendTrans.Apply();

document.getElementById('bgimg').style.filter="blendTrans(duration=2)";						// for bg
document.getElementById('bgimg').style.filter="blendTrans(duration=crossFadeDuration)";		// for bg
document.getElementById('bgimg').filters.blendTrans.Apply();								// for bg

}

document.images.SlideShow.src = preLoad[j].src;
document.getElementById('bgimg').style.background="url("+preLoadBg[j]+")";					// for bg

if (document.all) {
document.images.SlideShow.filters.blendTrans.Play();
document.getElementById('bgimg').filters.blendTrans.Play();									// for bg

}
j = j + 1;
if (j > (p - 1)) j = 0;
t = setTimeout('runSlideShow()', slideShowSpeed);
}
// 
