// JavaScript Document

 $(document).ready(function() {
					
							
function random_imglink(){

  var myimages=new Array()
  //specify random images below. You can have as many as you wish
  myimages[0]="img/homepage/1.jpg"
  myimages[1]="img/homepage/2.jpg"
  myimages[2]="img/homepage/3.jpg"
  myimages[3]="img/homepage/4.jpg"
  myimages[4]="img/homepage/5.jpg"
  myimages[5]="img/homepage/6.jpg"
  myimages[6]="img/homepage/7.jpg"
  myimages[7]="img/homepage/8.jpg"
  myimages[8]="img/homepage/9.jpg"
  myimages[9]="img/homepage/10.jpg"
  myimages[10]="img/homepage/NoMas_web1.jpg"
  myimages[11]="img/homepage/NoMas_web2.jpg"
  myimages[12]="img/homepage/NoMas_web3.jpg"
  myimages[13]="img/homepage/NoMas_web4.jpg"
  myimages[14]="img/homepage/NoMas_web5.jpg"
  myimages[15]="img/homepage/NoMas_web6.jpg"
  myimages[16]="img/homepage/NoMas_web7.jpg"
   myimages[17]="img/homepage/Pardon_johnson.jpg"

  
 
  //specify corresponding links below
  var imagelinks=new Array()
  imagelinks[0]="content/11-lsdnono"
  imagelinks[1]="204-lemon-balls.html"
  imagelinks[2]="16-finisher-bags"
  imagelinks[3]="rumblevision-art/130-rathman-2.html"
  imagelinks[4]="rumblevision-art/135-rathman-7.html"
  imagelinks[5]="36-team-tor"
  imagelinks[6]="36-team-tor"
  imagelinks[7]="t-shirts/91-everlast-ny.html"
  imagelinks[8]="18-everlast-ny"
  imagelinks[9]="18-everlast-ny"
  imagelinks[10]="t-shirts/91-everlast-ny.html"
  imagelinks[11]="t-shirts/12-bronx-river.html"
  imagelinks[12]="t-shirts/90-lonsdale.html"
  imagelinks[13]="shorts/55-no-mas-shorts.html"
  imagelinks[14]="t-shirts/33-handstyle.html"
  imagelinks[15]="t-shirts/33-handstyle.html"
  imagelinks[16]="176-super-leather-heavy-bag.html"
   imagelinks[17]="t-shirts/292-pardon-jack-johnson.html"
  var ry=Math.floor(Math.random()*myimages.length)
	

     $("#rnd_image").attr("src",myimages[ry]);
	  $("#homepage_link").attr("href",imagelinks[ry]);
}


  random_imglink()
  
  
   });
