var step=1
var image1=new Image()
image1.src="http://www.tailoredtours.com/img/sail.png"
var image2=new Image()
image2.src="http://www.tailoredtours.com/img/dylans.png"
var image3=new Image()
image3.src="http://www.tailoredtours.com/img/brklyn.png"
var image4=new Image()
image4.src="http://www.tailoredtours.com/img/tiff.png"
var image5=new Image()
image5.src="http://www.tailoredtours.com/img/pub.png"
var whichimage=1
function slideit(){
if (!document.images)
return
document.images.slide.src=eval("image"+step+".src")
whichimage=step
if (step<5)
step++
else
step=1
setTimeout("slideit()",7000)
}

function slidelink(){
if (whichimage==1)
window.location="http://www.tailoredtours.com/new_york_city/first_visit_tours"
else if (whichimage==2)
window.location="http://www.tailoredtours.com/new_york_city/food_tours"
else if (whichimage==3)
window.location="http://www.tailoredtours.com/new_york_city/first_visit_tours"
else if (whichimage==4)
window.location="http://www.tailoredtours.com/new_york_city/shopping_tours"
else if (whichimage==5)
window.location="http://www.tailoredtours.com/new_york_city/pub_crawls"
}
