<!--
//Random ration of hero images plus link to its page
function random_header(){
  var myimage=new Array()
  //specify random images below. You can have as many as you wish
  myimage[1]="banners/1.jpg"
  myimage[2]="banners/2.jpg"
  myimage[3]="banners/3.jpg"
  myimage[4]="banners/4.jpg"
  myimage[5]="banners/5.jpg"
  myimage[6]="banners/6.jpg"
  myimage[7]="banners/7.jpg"

//  specify corresponding links below
  var imagelink=new Array()
  imagelink[1]="index.php"
  imagelink[2]="index.php"
  imagelink[3]="index.php"
  imagelink[4]="index.php"
  imagelink[5]="index.php"
  imagelink[6]="index.php"
  imagelink[7]="index.php"

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

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

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