<!--
//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/banner1.jpg"
  myimages[2]="graphics/banner2.jpg"
  myimages[3]="graphics/banner3.jpg"
  myimages[4]="graphics/banner4.jpg"
  myimages[5]="graphics/banner5.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()
//-->