<!-- 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 Pict = new Array();
var Picts = new Array();
var Picbg = new Array();				// for bg
// to add more images, just continue
// the pattern, adding to the array below


Pic[0] = 'gifs/rajasthan-fort-lft.jpg'
Pic[1] = 'gifs/tiger-left.jpg'
Pic[2] = 'gifs/kerala-fes-left.jpg'
Pic[3] = 'gifs/palace-left.jpg'
Pic[4] = 'gifs/people-left.jpg'


Pict[0] = 'gifs/rajasthan-fort-md.jpg'
Pict[1] = 'gifs/tiger-md.jpg'
Pict[2] = 'gifs/kerala-fes-md.jpg'
Pict[3] = 'gifs/palace-md.jpg'
Pict[4] = 'gifs/people-md.jpg'


Picts[0] = 'gifs/rajasthan-fort-rt.jpg'
Picts[1] = 'gifs/tiger-rt.jpg'
Picts[2] = 'gifs/kerala-fes-rt.jpg'
Picts[3] = 'gifs/palace-rt.jpg'
Picts[4] = 'gifs/people-rt.jpg'


Picbg[0] = 'gifs/rajasthan-fort-bg.jpg'	// for bg
Picbg[1] = 'gifs/tiger-bg.jpg'	// for bg
Picbg[2] = 'gifs/kerala-fes-bg.jpg'	// for bg
Picbg[3] = 'gifs/palace-bg.jpg'	// for bg
Picbg[4] = 'gifs/people-bg.jpg'	// for bg


// do not edit anything below this line
var t;
var j = 0;
var p = Pic.length;
var preLoad = new Array();
var preLoad2 = new Array();
var preLoad3 = new Array();
var preLoadBg = new Array();			// for bg

for (i = 0; i < p; i++) {
preLoad[i] = new Image();
preLoad[i].src = Pic[i];
preLoad2[i] = new Image();
preLoad2[i].src = Pict[i];
preLoad3[i] = new Image();
preLoad3[i].src = Picts[i];
preLoadBg[i] = new Image();
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.images.SlideShow2.style.filter="blendTrans(duration=2)";
document.images.SlideShow2.style.filter="blendTrans(duration=crossFadeDuration)";
document.images.SlideShow2.filters.blendTrans.Apply();

document.images.SlideShow3.style.filter="blendTrans(duration=2)";
document.images.SlideShow3.style.filter="blendTrans(duration=crossFadeDuration)";
document.images.SlideShow3.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.images.SlideShow2.src = preLoad2[j].src;
document.images.SlideShow3.src = preLoad3[j].src;
document.getElementById('bgimg').style.background="url("+preLoadBg[j]+")";					// for bg

if (document.all) {
document.images.SlideShow.filters.blendTrans.Play();
document.images.SlideShow2.filters.blendTrans.Play();
document.images.SlideShow3.filters.blendTrans.Play();
document.getElementById('bgimg').filters.blendTrans.Play();									// for bg

}
j = j + 1;
if (j > (p - 1)) j = 0;
t = setTimeout('runSlideShow()', slideShowSpeed);
}
// 