<!-- Begin
// Set slideShowSpeed (milliseconds)
var slideShowSpeed = 4000;
// Duration of crossfade (seconds)
var crossFadeDuration = 10;
// Specify the image files
var Pic = new Array();
// to add more images, just continue
// the pattern, adding to the array below

Pic[0] = 'rajasthan/pic0.jpg'
Pic[1] = 'rajasthan/pic1.jpg'
Pic[2] = 'rajasthan/pic2.jpg'
Pic[3] = 'rajasthan/pic3.jpg'
Pic[4] = 'rajasthan/pic4.jpg'
Pic[5] = 'rajasthan/pic5.jpg'
Pic[6] = 'rajasthan/pic6.jpg'
Pic[7] = 'rajasthan/pic7.jpg'
Pic[8] = 'rajasthan/pic8.jpg'
Pic[9] = 'rajasthan/pic9.jpg'
Pic[10] = 'rajasthan/pic10.jpg'
Pic[11] = 'rajasthan/pic11.jpg'
Pic[12] = 'rajasthan/pic12.jpg'
Pic[13] = 'rajasthan/pic13.jpg'
Pic[14] = 'rajasthan/pic14.jpg'
Pic[15] = 'rajasthan/pic15.jpg'
Pic[16] = 'rajasthan/pic16.jpg'
Pic[17] = 'rajasthan/pic17.jpg'
Pic[18] = 'rajasthan/pic18.jpg'
Pic[19] = 'rajasthan/pic19.jpg'
Pic[20] = 'rajasthan/pic20.jpg'
Pic[21] = 'rajasthan/pic21.jpg'
Pic[22] = 'rajasthan/pic22.jpg'
Pic[23] = 'rajasthan/pic23.jpg'
Pic[24] = 'rajasthan/pic24.jpg'
Pic[25] = 'rajasthan/pic25.jpg'
Pic[26] = 'rajasthan/pic26.jpg'
Pic[27] = 'rajasthan/pic27.jpg'
Pic[28] = 'rajasthan/pic28.jpg'
Pic[29] = 'rajasthan/pic29.jpg'
Pic[30] = 'rajasthan/pic30.jpg'
Pic[31] = 'rajasthan/pic31.jpg'
Pic[32] = 'rajasthan/pic32.jpg'
Pic[33] = 'rajasthan/pic33.jpg'
Pic[34] = 'rajasthan/pic34.jpg'

// do not edit anything below this line
var t;
var j = 0;
var p = Pic.length;
var preLoad = new Array();
for (i = 0; i < p; i++) {
preLoad[i] = new Image();
preLoad[i].src = Pic[i];
}
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.SlideShow.src = preLoad[j].src;
if (document.all) {
document.images.SlideShow.filters.blendTrans.Play();
}
j = j + 1;
if (j > (p - 1)) j = 0;
t = setTimeout('runSlideShow()', slideShowSpeed);
}
// 