//================Image show in slide=========
var image1=new Image()
image1.src="us/images/eti_ad1.jpg"
var image2=new Image()
image2.src="us/images/eti_ad2.jpg"
var image3=new Image()
image3.src="us/images/eti_ad4.jpg"
var image4=new Image()
image4.src="us/images/eti_ad5.jpg"

//----------slide show information-------------
var step=1
var whichimage=1
function slideit(){
if (!document.images)
return
document.images.slide.src=eval("image"+step+".src")
whichimage=step
if (step<4)
step++
else
step=1
setTimeout("slideit()",3600)
}
slideit()
function slidelink(){
if (whichimage==1)
window.location="/honeymoon_tours.htm"
else if (whichimage==2)
window.location="/Golf_Tours.htm"
else if (whichimage==3)
window.location="/Wildlife_Tours.htm"
else if (whichimage==4)
window.location="/Festival_Series.htm"

}

