<!-- 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 slideShowSpeed6 = 4000;
// Duration of crossfade (seconds)
var crossFadeDuration6 = 3;
// Specify the image files
var Pic6 = new Array();
// to add more images, just continue
// the pattern, adding to the array below

Pic6[0] = 'images/pithampur_pro1.jpg'
Pic6[1] = 'images/pithampur_pro2.jpg'
Pic6[2] = 'images/pithampur_pro3.jpg'
Pic6[3] = 'images/pithampur_pro4.jpg'
Pic6[4] = 'images/pithampur_pro5.jpg'
Pic6[5] = 'images/pithampur_pro6.jpg'

// do not edit anything below this line
var t6;
var j6 = 0;
var p6 = Pic6.length;
var preLoad6 = new Array();
for (i = 0; i < p6; i++) {
preLoad6[i] = new Image();
preLoad6[i].src = Pic6[i];
}
function runSlideShow6() {
if (document.all) {
document.images.SlideShow6.style.filter="blendTrans(duration=2)";
document.images.SlideShow6.style.filter="blendTrans(duration=crossFadeDuration6)";
document.images.SlideShow6.filters.blendTrans.Apply();
}
document.images.SlideShow6.src = preLoad6[j6].src;
if (document.all) {
document.images.SlideShow6.filters.blendTrans.Play();
}
j6 = j6 + 1;
if (j6 > (p6 - 1)) j6 = 0;
t6 = setTimeout('runSlideShow6()', slideShowSpeed6);
}
// 