function random_imglink(){
  var myimages=new Array()
  //insert image here
  myimages[1]="images/shop/bench_coat.gif"
  myimages[2]="images/shop/tracksuit.gif"
  myimages[3]="images/shop/away_shirt_1.gif"
  myimages[4]="images/shop/new_shirt_1.gif"
  myimages[5]="images/shop/rain_jacket.gif"
  myimages[6]="images/shop/poloshirt.gif"
  //myimages[6]="images/shop/new_shirt_1.gif"
  //myimages[7]="images/shop/away_shirt_1.gif"
  //link to shop home page - remember to add more if adding new images
  var imagelinks=new Array()
  imagelinks[1]="club_shop.htm"
  imagelinks[2]="club_shop.htm"
  imagelinks[3]="club_shop.htm"
  imagelinks[4]="club_shop.htm"
  imagelinks[5]="club_shop.htm"
  imagelinks[6]="club_shop.htm"
  //imagelinks[6]="club_shop.htm" 
  //imagelinks[7]="club_shop.htm" 
  var ry=Math.floor(Math.random()*myimages.length)

  if (ry==0)
     ry=1
     document.write('<a href='+'"'+imagelinks[ry]+'"'+'><img src="'+myimages[ry]+'" border=0></a>')
}

  random_imglink()
//-->

