//<--
function random_about_02(){
var mycontent2=new Array()
//specify random content below.
mycontent2[0]='<img src="/images/top_photos_2/about/1.jpg" alt="" width="90" height="97" border="0">'
mycontent2[1]='<img src="/images/top_photos_2/about/2.jpg" alt="" width="90" height="97" border="0">'
mycontent2[2]='<img src="/images/top_photos_2/about/3.jpg" alt="" width="90" height="97" border="0">'
mycontent2[3]='<img src="/images/top_photos_2/about/4.jpg" alt="" width="90" height="97" border="0">'
mycontent2[4]='<img src="/images/top_photos_2/about/5.jpg" alt="" width="90" height="97" border="0">'

var ry=Math.floor(Math.random()*(mycontent2.length-1))
document.write(mycontent2[ry])
}
random_about_02()
//-->
