// Web Designer Saroja Kumar Sahoo
// Set slideShowSpeed (milliseconds)

var slideShowSpeed = 5500

// Duration of crossfade (seconds)
var crossFadeDuration = 4

// Specify the image files
var Pic = new Array() // don't touch this
// to add more images, just continue
// the pattern, adding to the array below

Pic[0] = 'images/easytours1.jpg'
Pic[1] = 'images/easytours2.jpg'
Pic[2] = 'images/easytours3.jpg'
Pic[3] = 'images/easytours4.jpg'


// =======================================
// do not edit anything below this line
// =======================================

var t1
var j1 = 0
var p1 = Pic.length

var preLoad = new Array()
for (i = 0; i < p1; i++){
preLoad[i] = new Image()
preLoad[i].src = Pic[i]
}

function runSlideShow(){
if (document.all){

document.images.SlideShow.style.filter="revealTrans(duration=2)";
document.images.SlideShow.style.filter="revealTrans(duration=1,transition=75";
document.images.SlideShow.filters.revealTrans.Apply();

}
document.images.SlideShow.src = preLoad[j1].src
if (document.all){
// document.images.SlideShow.filters.blendTrans.Play()
document.images.SlideShow.filters.revealTrans.Play()

}
j1 = j1 + 1
if (j1 > (p1-1)) j1=0
t1 = setTimeout('runSlideShow()', slideShowSpeed)
}