<!-- 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] = '/newBest/images/Index/Charminar.jpg'
Pic[1] = '/newBest/images/Index/Chowmahalla-Palace.jpg'
Pic[2] = '/newBest/images/Index/Fine-Dining.jpg'
Pic[3] = '/newBest/images/Index/BiralaMandir.jpg'
Pic[4] = '/newBest/images/Index/Golconda-Fort.jpg'
Pic[5] = '/newBest/images/Index/Pubs.jpg'
Pic[6] = '/newBest/images/Index/Ramoji-Film-City.jpg'
Pic[7] = '/newBest/images/Index/NightSkyline.jpg'
Pic[8] = '/newBest/images/Index/Hussain-Sagar-lake2.jpg'
Pic[9] = '/newBest/images/Index/IT-&-BPO.jpg'
Pic[10] = '/newBest/images/index/Falaknuma-Palace.jpg'
Pic[11] = '/newBest/images/index/Jalagam-Vengal-Rao-Park.jpg'
Pic[12] = '/newBest/images/index/Hyderabad-Central.jpg'
Pic[13] = '/newBest/images/index/Nehru--Zoological-Park.jpg'
Pic[14] = '/newBest/images/index/Necklace-Road.jpg'
Pic[15] = '/newBest/images/index/Botonical-Garden.jpg'
Pic[16] = '/newBest/images/index/Art&Culture.jpg'
Pic[16] = '/newBest/images/index/LalitahKalaBavana.jpg'
Pic[16] = '/newBest/images/index/Birla-Science-Museum.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);
}
// 
