//<--
function random_condo(){
var mycontent=new Array()
//specify random content below.
mycontent[0]='<img src="images/condominiums/panel.jpg" alt="" width="700" height="171">'
mycontent[1]='<img src="images/condominiums/panel-2.jpg" alt="" width="700" height="171">'
mycontent[2]='<img src="images/condominiums/panel-3.jpg" alt="" width="700" height="171">'

var ry=Math.floor(Math.random()*mycontent.length)
document.write(mycontent[ry])
}
random_condo()
//-->

