//<--
function random_features(){
var mycontent=new Array()
//specify random content below.
//mycontent[1]='<img src="/images/home_photos_01.jpg" alt="" width="780" height="482" border="0" usemap="#home">'
mycontent[1]='<img src="/images/panel-1.jpg" alt="" width="577" height="244" border="0">'
mycontent[2]='<img src="/images/panel-2.jpg" alt="" width="577" height="244" border="0">'
mycontent[3]='<img src="/images/panel-3.jpg" alt="" width="577" height="244" border="0">'
mycontent[4]='<img src="/images/panel-4.jpg" alt="" width="577" height="244" border="0">'
mycontent[5]='<img src="/images/panel-5.jpg" alt="" width="577" height="244" border="0">'

var ry=Math.floor(Math.random()*mycontent.length)
if (ry==0)
ry=1
document.write(mycontent[ry])
}
random_features()
//-->

