function random_imglink(){
  var myimages=new Array()
  //specify random images below. You can have as many as you wish
  myimages[1]="http://alongtheway.110mb.com/media/eagle1.jpg"
  myimages[2]="http://alongtheway.110mb.com/media/eagle2.jpg"
  myimages[3]="http://alongtheway.110mb.com/media/eagle_stamp.jpg"
  myimages[4]="http://alongtheway.110mb.com/media/eagle_bumper.jpg"
  myimages[5]="http://alongtheway.110mb.com/media/eagle_clock.jpg"

  //specify corresponding links below
  var imagelinks=new Array()
  imagelinks[1]="http://www.cafepress.com/tjustleft"
  imagelinks[2]="http://www.cafepress.com/tjustleft"
  imagelinks[3]="http://www.cafepress.com/tjustleft"
  imagelinks[4]="http://www.cafepress.com/tjustleft"
  imagelinks[5]="http://www.cafepress.com/tjustleft"

  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()
  /*
Random Image Link Script
By Website Abstraction (http://www.wsabstract.com)
and Java-scripts.net (http://www.java-scripts.net)
*/