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