function random_img(){
function random_imglink(){
  var rmgs=new Array()
  //specify random images below. You can have as many as you wish
  rmgs[1]="01"
  rmgs[2]="02"
  rmgs[3]="03"
  rmgs[4]="04"
  rmgs[5]="05"
  rmgs[6]="06"
  rmgs[7]="07"
  rmgs[8]="08"
  rmgs[9]="09"
  rmgs[10]="10"
  rmgs[11]="11"
  rmgs[12]="12"
  rmgs[13]="13"
  rmgs[14]="14"
  rmgs[15]="15"
  rmgs[16]="16"
  rmgs[17]="17"
  
  //specify corresponding links below
  var imgl=new Array()
  imgl[1]=""
  imgl[2]=imgl[1]
  imgl[3]=imgl[1]
  imgl[4]=imgl[1]
  imgl[5]=imgl[1]
  imgl[6]=imgl[1]
  imgl[7]=imgl[1]
  imgl[8]=imgl[1]
  imgl[9]=imgl[1]
  imgl[10]=imgl[1]
  imgl[11]=imgl[1]
  imgl[12]=imgl[1]
  imgl[13]=imgl[1]
  imgl[14]=imgl[1]
  imgl[15]=imgl[1]
  imgl[16]=imgl[1]
  imgl[17]=imgl[1]
  
  var ry=Math.floor(Math.random()*rmgs.length)

  if (ry==0)
     ry=1
     document.write('<img src="'+'img/random/random'+rmgs[ry]+'.jpg'+'" alt='+'"'+imgl[ry]+'"'+' border=0 width="395" height="120">')
}random_imglink()}

