
//specify total # of random links
var totallinks=2

var urls=new Array(totallinks)
var images=new Array(totallinks)
var titles=new Array(totallinks)

images[0]="/img/dad.jpg"
titles[0]="Discover Domus this Spring!"

images[1]="/img/barbeque.jpg"
titles[1]="Discover Domus this Spring!"

var DomusRandom=Math.floor(Math.random()*totallinks)

var cont="<img src='"+images[DomusRandom]+"' border='0' alt='"+titles[DomusRandom]+"'>"
document.write(cont)


