//Random Image Link Script
//By Website Abstraction (http://www.wsabstract.com)
//and Java-scripts.net (http://www.java-scripts.net)

function random_imglink(){
  var myimages=new Array()
  //specify random images below. You can have as many as you wish
//ORIGINAL Trezo Rotator  myimages[1]="/images/teasers/trezo-mare-ristorante.jpg"
  myimages[1]="/images/teasers/TrezoBrunch.jpg"
  myimages[2]="/images/teasers/urban-arts-and-crafts.jpg"

  //specify corresponding links below
  var imagelinks=new Array()
//ORIGINAL Trezo Rotator  imagelinks[1]="/dining/trezomare.php"
  imagelinks[1]="http://trezomare.com/Brunch.pdf"
  imagelinks[2]="/shopping/urban_arts_and_crafts.php"


  var ry=Math.floor(Math.random()*myimages.length)

  if (ry==0)
     ry=1
     document.write('<a href='+'"'+imagelinks[ry]+'"'+'><img src="'+myimages[ry]+'" border=0></a>')
}

  random_imglink()