<!--
/*
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://img504.imageshack.us/img504/8553/anhv7.jpg"
  myimages[2]="http://img205.imageshack.us/img205/3491/beqc6.jpg"
  myimages[3]="http://img69.imageshack.us/img69/7924/emuvu3.jpg"
  myimages[4]="http://img262.imageshack.us/img262/536/masqhd3.jpg"


  //specify corresponding links below
  var imagelinks=new Array()
  imagelinks[1]="http://anabasis.splinder.com/"
  imagelinks[2]="http://www.sushirock.org/blurry_eyes/"
  imagelinks[3]="http://emugraphics.altervista.org/emu/index.php"
  imagelinks[4]="http://mad-satsuki.livejournal.com/"

  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()
//-->
