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

