<!-- 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 slideShowSpeed5 = 4000;
// Duration of crossfade (seconds)
var crossFadeDuration5 = 3;
// Specify the image files
var Pic5 = new Array();
// to add more images, just continue
// the pattern, adding to the array below

Pic5[0] = 'images/pithampur1.jpg'
Pic5[1] = 'images/pithampur2.jpg'
Pic5[2] = 'images/pithampur3.jpg'
Pic5[3] = 'images/pithampur4.jpg'

// do not edit anything below this line
var t5;
var j5 = 0;
var p5 = Pic5.length;
var preLoad5 = new Array();
for (i = 0; i < p5; i++) {
preLoad5[i] = new Image();
preLoad5[i].src = Pic5[i];
}
function runSlideShow5() {
if (document.all) {
document.images.SlideShow5.style.filter="blendTrans(duration=2)";
document.images.SlideShow5.style.filter="blendTrans(duration=crossFadeDuration5)";
document.images.SlideShow5.filters.blendTrans.Apply();
}
document.images.SlideShow5.src = preLoad5[j5].src;
if (document.all) {
document.images.SlideShow5.filters.blendTrans.Play();
}
j5 = j5 + 1;
if (j5 > (p5 - 1)) j5 = 0;
t5 = setTimeout('runSlideShow5()', slideShowSpeed5);
}
// 