<!--
//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]="2009-images/header/1.jpg"
  myimages[2]="2009-images/header/2.jpg"
  myimages[3]="2009-images/header/3.jpg"

//  specify corresponding links below
  var imagelinks=new Array()
  imagelinks[1]="index.htm"
  imagelinks[2]="index.htm"
  imagelinks[3]="index.htm"

  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="518" height="255">')
}

  //call with: random_imglink()
//-->