<!--
//number 1 note1
//number 2 note2

function random_imglink(){
var myimages=new Array()
//specify random images below. You can have as many as you wish
myimages[1]="http://www.hothatch.net/images/hothatch_ctr.jpg"
myimages[2]="http://www.hothatch.net/images/hothatch_cup.jpg"
myimages[3]="http://www.hothatch.net/images/hothatch_r32.jpg"
myimages[4]="http://www.hothatch.net/images/hothatch_rs.jpg"
myimages[5]="http://www.hothatch.net/images/hothatch_cup.jpg"
myimages[6]="http://www.hothatch.net/images/hothatch_zr160.jpg"
myimages[7]="http://www.hothatch.net/images/hothatch_s3.jpg"
myimages[8]="http://www.hothatch.net/images/hothatch_saxo.jpg"


//specify corresponding links below
var imagelinks=new Array()
imagelinks[1]="http://www.hothatch.net/"
imagelinks[2]="http://www.hothatch.net/"
imagelinks[3]="http://www.hothatch.net/"
imagelinks[4]="http://www.hothatch.net/"
imagelinks[5]="http://www.hothatch.net/"
imagelinks[6]="http://www.hothatch.net/"
imagelinks[7]="http://www.hothatch.net/"
imagelinks[8]="http://www.hothatch.net/"

var ry=Math.floor(Math.random()*myimages.length)
if (ry==0)
ry=1
document.write('<a href='+'"'+imagelinks[ry]+'"'+' target="_blank"><img src="'+myimages[ry]+'" border=0></a>')
}
random_imglink()
//-->

