var max = 10;
var nrImages = 9;
function makeImages() {
this[0] = "imgs/banner_full_5.jpg";
this[1] = "imgs/banner_full_3.jpg";
this[2] = "imgs/banner_l200_outdoor.jpg";
this[3] = "imgs/banner_l200_savana.jpg";
this[4] = "imgs/banner_l200_triton.jpg";
this[5] = "imgs/banner_outlander.jpg";
this[6] = "imgs/banner_sport.jpg";
this[7] = "imgs/banner_tr4_2.jpg";
this[8] = "imgs/banner_eclipse.jpg";
this.length = nrImages;
}
function makeLinks() {
this[0] = "http://www.kimera.com.br/novos_detalhe.php?veiculo=102";
this[1] = "http://www.kimera.com.br/novos_detalhe.php?veiculo=101";
this[2] = "http://www.kimera.com.br/novos_detalhe.php?veiculo=103";
this[3] = "http://www.kimera.com.br/novos_detalhe.php?veiculo=107";
this[4] = "http://www.kimera.com.br/novos_detalhe.php?veiculo=100";
this[5] = "http://www.kimera.com.br/novos_detalhe.php?veiculo=95";
this[6] = "http://www.kimera.com.br/novos_detalhe.php?veiculo=99";
this[7] = "http://www.kimera.com.br/novos_detalhe.php?veiculo=97";
this[8] = "http://www.kimera.com.br/novos_detalhe.php?veiculo=106";

this.length = nrImages;

}
var vetImages = new makeImages();
var vetLinks = new makeLinks();
var x = Math.round(Math.random()*max);
var y = max / nrImages;
for(var cont = 1;cont*y<= max;cont++) {
if (x <= (cont*y)) {
document.write("<a href="+vetLinks[cont-1]+"><img src="+vetImages[cont-1]+" border=0></a>");
break;
}
}