function random_imglink(){
  var myimages=new Array()
  myimages[1]="images/thumb/Recreation01.jpg"
  myimages[2]="images/thumb/Recreation02.jpg"
  myimages[3]="images/thumb/Recreation03.jpg"
  myimages[4]="images/thumb/Recreation04.jpg"
  myimages[5]="images/thumb/Recreation05.jpg"
	
  var ry=Math.floor(Math.random()*myimages.length)

  if (ry==0)
     ry=1
     document.write('<img src="'+myimages[ry]+'" height=99 with=154 border=1 alt="">')
}

  random_imglink()