// JavaScript Document

<!--
/*
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]="image/header2.jpg"
  myimages[2]="image/header3.jpg"
  myimages[3]="image/header4.jpg"
  myimages[4]="image/header5.jpg"
  myimages[5]="image/header6.jpg"
  myimages[6]="image/header7.jpg"
  myimages[7]="image/header8.jpg"
  myimages[8]="image/header9.jpg"
  myimages[9]="image/header10.jpg"
  //myimages[2]="flash/events/tbccoJD2.jpg"
  //myimages[5]="photo/photo1/6.jpg"
  //myimages[6]="photo/photo1/7.jpg"
  var imagelinks=new Array()

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

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

  random_imglink()
//-->
