<!--
function random_img(){
  var myimages=new Array()
  //specify random images below. You can have as many as you wish
  myimages[1]="leafytop.jpg"
  myimages[2]="watertop.jpg"
  myimages[3]="cloudtop.jpg"
  myimages[4]="abstracttop.jpg"
  //specify corresponding links below
  var ry=Math.floor(Math.random()*myimages.length)
  if (ry==0)
     ry=1
     document.write('<TD background="images/'+myimages[ry]+'" WIDTH=535 HEIGHT=193 align=center valign=middle>')
}
  random_img()
//-->

