//<--
function random_cars(){
var mycontent=new Array()
//specify random content below.
mycontent[1]='<img src="/images/home-car-1.jpg" alt="" width="619" height="119" border="0">'
mycontent[2]='<img src="/images/home-car-2.jpg" alt="" width="619" height="119" border="0">'
mycontent[3]='<img src="/images/home-car-3.jpg" alt="" width="619" height="119" border="0">'
mycontent[4]='<img src="/images/home-car-4.jpg" alt="" width="619" height="119" border="0">'
mycontent[5]='<img src="/images/home-car-5.jpg" alt="" width="619" height="119" border="0">'
var ry=Math.floor(Math.random()*mycontent.length)
if (ry==0)
ry=1
document.write(mycontent[ry])
}
random_cars()
//-->

