<!--
/*
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
  myimages[1]="http://www.edgeoftheocean.com/shop/graphics/rotating_pictures/springfield_set.jpg"
  myimages[2]="http://www.edgeoftheocean.com/shop/graphics/rotating_pictures/manhattan_set.jpg"
  myimages[3]="http://www.edgeoftheocean.com/shop/graphics/rotating_pictures/manhattan_set_2.jpg"
  myimages[4]="http://www.edgeoftheocean.com/shop/graphics/rotating_pictures/black_maine_set.jpg"
  myimages[5]="http://www.edgeoftheocean.com/shop/graphics/rotating_pictures/springfield_set.jpg"
  myimages[6]="http://www.edgeoftheocean.com/shop/graphics/rotating_pictures/avignon_set.jpg"
  myimages[7]="http://www.edgeoftheocean.com/shop/graphics/rotating_pictures/quebec_set.jpg"
  myimages[8]="http://www.edgeoftheocean.com/shop/graphics/rotating_pictures/siena_set.jpg"
  myimages[9]="http://www.edgeoftheocean.com/shop/graphics/rotating_pictures/maine_set_2.jpg"
  myimages[10]="http://www.edgeoftheocean.com/shop/graphics/rotating_pictures/maine_set_4.jpg"
  myimages[11]="http://www.edgeoftheocean.com/shop/graphics/rotating_pictures/franklin_set.jpg"
  myimages[12]="http://www.edgeoftheocean.com/shop/graphics/rotating_pictures/addison_set.jpg"
  myimages[13]="http://www.edgeoftheocean.com/shop/graphics/rotating_pictures/lyndonville_set.jpg"



  //specify corresponding links below
  var imagelinks=new Array()
  imagelinks[1]="http://www.edgeoftheocean.com/shop/2/3/8/index.htm"
  imagelinks[2]="http://www.edgeoftheocean.com/shop/2/3/9/index.htm"
  imagelinks[3]="http://www.edgeoftheocean.com/shop/2/3/9/index.htm"
  imagelinks[4]="http://www.edgeoftheocean.com/shop/2/3/10/index.htm"
  imagelinks[5]="http://www.edgeoftheocean.com/shop/2/3/11/index.htm"
  imagelinks[6]="http://www.edgeoftheocean.com/shop/2/4/16/index.htm"
  imagelinks[7]="http://www.edgeoftheocean.com/shop/2/4/17/index.htm"
  imagelinks[8]="http://www.edgeoftheocean.com/shop/2/4/18/index.htm"
  imagelinks[9]="http://www.edgeoftheocean.com/shop/2/6/12/index.htm"
  imagelinks[10]="http://www.edgeoftheocean.com/shop/2/6/12/index.htm"
  imagelinks[11]="http://www.edgeoftheocean.com/shop/2/6/13/index.htm"
  imagelinks[12]="http://www.edgeoftheocean.com/shop/2/6/14/index.htm"
  imagelinks[13]="http://www.edgeoftheocean.com/shop/2/6/15/index.htm"

  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()
//-->
