<!--

function random_imglink(){

  var myimages=new Array()

  //specify random images below. You can have as many as you wish

  myimages[1]="http://www.lowandbehold.co.uk/images/features/left_charity_01.jpg"
  
  myimages[2]="http://www.lowandbehold.co.uk/images/features/left_t-shirt_02.jpg"
  
  myimages[3]="http://www.lowandbehold.co.uk/images/features/left_recycle_01.jpg"
  
  myimages[4]="http://www.lowandbehold.co.uk/images/features/left_consultancy_01.jpg"
 



  //specify corresponding links below

  var imagelinks=new Array()

  imagelinks[1]="http://www.lowandbehold.co.uk/behold/charities.html"
  
  imagelinks[2]="http://www.lowandbehold.co.uk/mens_clothes/index.html"
  
  imagelinks[3]="http://www.lowandbehold.co.uk/recycle/index.html"
  
  imagelinks[4]="http://www.lowandbehold.co.uk/consultancy/index.html"



  var ry=Math.floor(Math.random()*myimages.length)



  if (ry==0)

     ry=1

     document.write('<a href='+'"'+imagelinks[ry]+'"'+'><img src="'+myimages[ry]+'" width="275" height="100" border=0></a>')

}



  random_imglink()

//-->


