<!--
//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]="logos/image1.jpg"
  myimages[2]="logos/image2.jpg"


//  specify corresponding links below
  var imagelinks=new Array()
  imagelinks[1]="index.php?p=2_7_Media."
  imagelinks[2]="index.php?p=2_7_Media."


  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="750" height="100" border=0></a>')
}
-->
