<!-- 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();


Pic[0] = 'images/IndexPresentationImages/Shopping.jpg' 
Pic[1] = 'images/IndexPresentationImages/sightseeing.jpg'
Pic[2] = 'images/IndexPresentationImages/Eatouts.jpg'
Pic[3] = 'images/IndexPresentationImages/sightseeing3.jpg'
Pic[4] = 'images/IndexPresentationImages/Art-&-Culture.jpg'
Pic[5] = 'images/IndexPresentationImages/sightseeing1.jpg'
Pic[6] = 'images/IndexPresentationImages/hotels.jpg'
Pic[7] = 'images/IndexPresentationImages/sightseeing2.jpg'
Pic[8] = 'images/IndexPresentationImages/Entertainment.jpg'
Pic[9] = 'images/IndexPresentationImages/Houseboat.jpg'
/*
Pic[11] = 'images/IndexPresentationImages/ChennaiSilkSaree.jpg'
Pic[12] = 'images/IndexPresentationImages/Beaches.jpg'
Pic[13] = 'images/IndexPresentationImages/kollywood.jpg'
*/
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 runSlideShow4() {
if (document.all) {
document.images.SlideShow4.style.filter="BlendTrans(duration=2)";
document.images.SlideShow4.style.filter="revealTrans(duration=crossFadeDuration)";
document.images.SlideShow4.filters.revealTrans.Apply();
}
document.images.SlideShow4.src = preLoad[j].src;
if (document.all) {
document.images.SlideShow4.filters.revealTrans.Play();
}
j = j + 1;
if (j > (p - 1)) j = 0;
t = setTimeout('runSlideShow4()', slideShowSpeed);
}
// 
