<!-- 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/IndexImages/AMBER.jpg'
Pic[1] = 'images/IndexImages/CITY.jpg'
Pic[2] = 'images/IndexImages/jaigarh.jpg'
Pic[3] = 'images/IndexImages/JAIPUR.jpg'
Pic[4] = 'images/IndexImages/jalmahal.jpg'
Pic[5] = 'images/IndexImages/step.jpg'
Pic[6] = 'images/IndexImages/BIRLA.jpg'
Pic[7] = 'images/IndexImages/CAMEL RACING.jpg'

var t;
var j = 0;
var timer_is_on=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() {

document.images.SlideShow4.src = preLoad[j].src;

j = j + 1;
if (j > (p - 1)) j = 0;
t = setTimeout('runSlideShow4()', slideShowSpeed);
}
function doTimer()
{
if (!timer_is_on)
  {
  timer_is_on=1;
  runSlideShow4();
  document.getElementById("apDiv2").style.display='none';
  document.getElementById("apDiv1").style.display='block';
  }
}

function stopCount()
{
timer_is_on=0;
clearTimeout(t);
document.getElementById("apDiv1").style.display='none';
document.getElementById("apDiv2").style.display='block';
}
// 
