var image1=new Image()
image1.src="images/bestofslide.png"
var image2=new Image()
image2.src="images/locationsslide.gif"
var image3=new Image()
image3.src="images/framesslide3.jpg"
var image4=new Image()
image4.src="images/artslide.jpg"

var step=1
var whichimage=1

function initialize(){
  if (!document.images || !document.getElementById)
    return
  document.getElementById('slide').src=eval("image"+step+".src")
  whichimage=step
  if (step<4)
    step++
  else
    step=1
    setTimeout("initialize()",3000)
}

function slidelink(){
  if (whichimage==2)
    window.location="findus.php"
  else if (whichimage==3)
    window.location="frames.php"
  else if (whichimage==4)
    window.location="art.php"
}

