var max = 7;
var nrImages = 7;
function makeImages() {

this[0] = "http://www.eliteacompanhantes.com.br/travestis/bahia/alice/banner_alice.jpg";
this[1] = "http://www.eliteacompanhantes.com.br/travestis/sao-paulo/lorena/lorena_banner.jpg";
this[2] = "http://www.eliteacompanhantes.com.br/travestis/sao-paulo/lia_patricia/banner_lia_patricia.jpg";
this[3] = "http://www.eliteacompanhantes.com.br/travestis/sao-paulo/amanda-secrets/banner_amanda.jpg";
this[4] = "http://www.eliteacompanhantes.com.br/travestis/rio-de-janeiro/patricia_sabatiny/banner_paty.jpg";
this[5] = "http://www.eliteacompanhantes.com.br/travestis/santa-catarina/vanessa/banner_vanessa.jpg";
this[6] = "http://www.eliteacompanhantes.com.br/travestis/parana/fabiana_soares/banner_fabi.jpg";

this.length = nrImages;
}
function makeLinks() {
this[0] = "http://www.eliteacompanhantes.com.br/travestis/bahia/alice-dcastro-transex-feminina-em-salvador-ba.htm";
this[1] = "http://www.eliteacompanhantes.com.br/travestis/sao-paulo/acompanhante-transex-sp-lorena-smith.htm";
this[2] = "http://www.eliteacompanhantes.com.br/travestis/sao-paulo/trans-sp-lia-patricia.htm";
this[3] = "http://www.eliteacompanhantes.com.br/travestis/sao-paulo/amanda-secret-tgatas-dotadas-sp.htm";
this[4] = "http://www.eliteacompanhantes.com.br/travestis/rio-de-janeiro/paty-sabatiny-travestis-rj.htm";
this[5] = "http://www.eliteacompanhantes.com.br/travestis/santa-catarina/vanessa-transex-dotada-florianopolis.htm";
this[6] = "http://www.eliteacompanhantes.com.br/travestis/parana/fabiana-soares-acompanhante-transex-curitiba.htm";

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;
}
}
