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