//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"
  myimages[3]="/images/teasers/greenacres-market.jpg"
  myimages[4]="/images/teasers/tivol.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"
  imagelinks[3]="/shopping/green_acres_market.php"
  imagelinks[4]="/shopping/tivol.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()