<!--
//Random ration of hero images plus link to its page
function random_imglink(){
  var myimages=new Array()
  //specify random images below. You can have as many as you wish
  myimages[1]="images/random/hero/hero1.jpg"
  myimages[2]="images/random/hero/hero2.jpg"
  myimages[3]="images/random/hero/hero3.jpg"

  //specify corresponding links below
  var imagelinks=new Array()
  imagelinks[1]="news_hero1.html"
  imagelinks[2]="news_hero2.html"
  imagelinks[3]="news_hero3.html"

  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('<a href='+'"'+imagelinks[ry]+'"'+'><img src="'+myimages[ry]+'" border=0 width="619" height="173"></a>')
}

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