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

this[0] = "http://www.eliteacompanhantes.com.br/travestis/sao-paulo/lia_patricia/banner_lia_patricia.jpg";
this[1] = "http://www.eliteacompanhantes.com.br/travestis/sao-paulo/rafaela_belucci/banner_rafaela_belucci.jpg";
this[2] = "http://www.eliteacompanhantes.com.br/images/banner_elite-transex.jpg";
this[3] = "http://www.eliteacompanhantes.com.br/travestis/rio-de-janeiro/ravyla/banner_ravyla.jpg";
this[4] = "http://www.eliteacompanhantes.com.br/travestis/minas-gerais/leticia/banner_leticia_close.jpg";



this.length = nrImages;
}
function makeLinks() {
this[0] = "http://www.eliteacompanhantes.com.br/travestis/sao-paulo/trans-sp-lia-patricia.htm";
this[1] = "http://www.eliteacompanhantes.com.br/travestis/sao-paulo/boneca-sp-rafaela-belucci.htm";
this[2] = "http://www.elite-transex.com";
this[3] = "http://www.eliteacompanhantes.com.br/travestis/rio-de-janeiro/boneca-rj-ravyla-garden.htm";
this[4] = "http://www.eliteacompanhantes.com.br/travestis/minas-gerais/transex-belo-horizonte-mg-leticia-close.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;
}
}
