function random_imglink(){
var myimages=new Array()
myimages[1]="foto_home/01.jpg"
myimages[2]="foto_home/02.jpg"
myimages[3]="foto_home/03.jpg"

var ry=Math.floor(Math.random()*myimages.length)
if (ry==0)
ry=1
document.write('<img src="'+myimages[ry]+'" border=0>')
}
random_imglink()
