var max = 9;
var nrImages = 9;
function makeImages() {

this[0] = "http://www.eliteacompanhantes.com.br/banners/banner_fernanda_keller.jpg";
this[1] = "http://www.eliteacompanhantes.com.br/banners/banner_fabiana.jpg";
this[2] = "http://www.eliteacompanhantes.com.br/banners/ariadny_oliver.jpg";
this[3] = "http://www.eliteacompanhantes.com.br/banners/banner_stefanie.jpg";
this[4] = "http://www.eliteacompanhantes.com.br/banners/banner_lia_patricia.jpg";
this[5] = "http://www.eliteacompanhantes.com.br/banners/mayara.jpg";
this[6] = "http://www.eliteacompanhantes.com.br/banners/banner_ariadna.jpg";
this[7] = "http://www.eliteacompanhantes.com.br/banners/fabricia_ferreira.jpg";
this[8] = "http://www.eliteacompanhantes.com.br/banners/claudia_fifer.jpg";



this.length = nrImages;
}
function makeLinks() {

this[0] = "http://www.eliteacompanhantes.com.br/modelos/22/";
this[1] = "http://www.eliteacompanhantes.com.br/modelos/209/";
this[2] = "http://www.eliteacompanhantes.com.br/modelos/40/";
this[3] = "http://www.eliteacompanhantes.com.br/modelos/17/";
this[4] = "http://www.eliteacompanhantes.com.br/modelos/159/";
this[5] = "http://www.eliteacompanhantes.com.br/modelos/215/";
this[6] = "http://www.eliteacompanhantes.com.br/modelos/26/";
this[7] = "http://www.eliteacompanhantes.com.br/modelos/227/";
this[8] = "http://www.eliteacompanhantes.com.br/modelos/201/";



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]+" target=_blank><img src="+vetImages[cont-1]+" border=0></a>");
break;
}
}


