function random_imglink(){
var myimages=new Array()
//specify random images below. You can have as many as you wish

myimages[1]="../peel/hawke.js"
myimages[2]="../peel/sinu.js"


var ry=Math.floor(Math.random()*myimages.length)
if (ry==0)
ry=1
document.write('\<script src=" ' + myimages[ry] +  ' " type="text/javascript"\>\</script\>')
}
random_imglink();
