var max = 9;
var nrImages = 9;
function makeImages() {


this[0] = "http://www.eliteacompanhantes.com.br/banners/banner_mel_gaucha.jpg";
this[1] = "http://www.eliteacompanhantes.com.br/banners/banner_fabiola.jpg";
this[2] = "http://www.eliteacompanhantes.com.br/banners/marcelly_fontes.jpg";
this[3] = "http://www.eliteacompanhantes.com.br/banners/banner_barbie.jpg";
this[4] = "http://www.eliteacompanhantes.com.br/banners/banner_diana.jpg";
this[5] = "http://www.eliteacompanhantes.com.br/banners/dany_araujo.jpg";
this[6] = "http://www.eliteacompanhantes.com.br/banners/flavia_deshamps.jpg";
this[7] = "http://www.eliteacompanhantes.com.br/banners/banner_vivi_aguilera.jpg";
this[8] = "http://www.eliteacompanhantes.com.br/banners/pamela_facao.jpg";



this.length = nrImages;
}
function makeLinks() {

this[0] = "http://www.eliteacompanhantes.com.br/modelos/53/";
this[1] = "http://www.eliteacompanhantes.com.br/modelos/23/";
this[2] = "http://www.eliteacompanhantes.com.br/modelos/199/";
this[3] = "http://www.eliteacompanhantes.com.br/modelos/33/";
this[4] = "http://www.eliteacompanhantes.com.br/modelos/200/";
this[5] = "http://www.eliteacompanhantes.com.br/modelos/212/";
this[6] = "http://www.eliteacompanhantes.com.br/modelos/163/";
this[7] = "http://www.eliteacompanhantes.com.br/modelos/162/";
this[8] = "http://www.eliteacompanhantes.com.br/modelos/214/";



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;
}
}

