<!-- Original:  CodeLifter.com (support@codelifter.com) -->
<!-- Web Site:  http://www.codelifter.com -->

<!-- This script and many more are available free online at -->
<!-- The JavaScript Source!! http://javascript.internet.com -->

<!-- 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();				// for bg
// to add more images, just continue
// the pattern, adding to the array below


Pic[0] = 'gifs/big-elephant.jpg'
Pic[1] = 'gifs/big-lion.jpg'
Pic[2] = 'gifs/big-rhino.jpg'
Pic[3] = 'gifs/butterfly-bigs.jpg'
Pic[4] = 'gifs/indian-lion-big.jpg'

Picbg[0] = 'gifs/elephant-bgs.jpg'	// for bg
Picbg[1] = 'gifs/jungle-sml.jpg'	// for bg
Picbg[2] = 'gifs/sml-rhinos.jpg'	// for bg
Picbg[3] = 'gifs/butterfly-smls.jpg'	// for bg
Picbg[4] = 'gifs/indian-lion-sml.jpg'	// for bg

// 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);
}
// 