<!--



/*

Random Image Link Script- By JavaScript Kit(http://www.javascriptkit.com) 

Over 200+ free JavaScripts here!

Updated: 00/04/25

*/



function random_imglink(){

var myimages=new Array()

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

myimages[1]="random/chris.jpg"

myimages[2]="random/laura.jpg"

myimages[3]="random/luis.jpg"

myimages[4]="random/rick.jpg"




//specify corresponding links below

var imagelinks=new Array()

imagelinks[1]="tattoos.html"

imagelinks[2]="tattoos.html"

imagelinks[3]="tattoos.html"

imagelinks[4]="tattoos.html"


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()

//-->