//<--
function randomIndexPhotos(){
var mycontent=new Array()
//specify random content below.
mycontent[1]='<img src="images/index/main_photo_01.jpg" alt="" width="378" height="202" border="0">'
mycontent[2]='<img src="images/index/main_photo_02.jpg" alt="" width="378" height="202" border="0">'
mycontent[3]='<img src="images/index/main_photo_03.jpg" alt="" width="378" height="202" border="0">'

var ry=Math.floor(Math.random()*mycontent.length)
if (ry==0)
ry=1
document.write(mycontent[ry])
}
randomIndexPhotos()
//-->