<!--
//Random ration of hero images plus link to its page
function random_header(){
  var myimages=new Array()
  //specify random images below. You can have as many as you wish
  myimages[1]="graphics/1.jpg"
  myimages[2]="graphics/2.jpg"
  myimages[3]="graphics/3.jpg"
  myimages[4]="graphics/4.jpg"
  myimages[5]="graphics/5.jpg"
  myimages[6]="graphics/6.jpg"
  myimages[7]="graphics/7.jpg"
  myimages[8]="graphics/8.jpg"
  myimages[9]="graphics/9.jpg"
  myimages[10]="graphics/10.jpg"
  myimages[11]="graphics/11.jpg"
  myimages[12]="graphics/12.jpg"
  myimages[13]="graphics/13.jpg"
  myimages[14]="graphics/14.jpg"
  myimages[15]="graphics/15.jpg"
  myimages[16]="graphics/16.jpg"
  myimages[17]="graphics/17.jpg"
  myimages[18]="graphics/18.jpg"
  //specify corresponding links below


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

//make sure the image size is correct in the following section
  if (ry==0)
     ry=1
     document.write('<img src="'+myimages[ry]+'" border=0 width="975" height="245">')
}

  //call with: random_imglink()
//-->
