var max = 10;
var nrImages = 25;

function makeImages() {
this[0] = "top/sites/toneis.jpg";
this[1] = "top/sites/barril.jpg";
this[2] = "top/sites/inteligencia.jpg";
this[3] = "top/sites/churrasco.jpg";
this[4] = "top/sites/infoparts.jpg";
this[5] = "top/sites/portaldacachaca.jpg";
this[6] = "top/sites/raf.jpg";
this[7] = "top/sites/prematuros.jpg";
this[8] = "top/sites/brasil.jpg";
this[9] = "top/sites/neodonto.jpg";
this[10] = "top/sites/segatex.jpg";
this[11] = "top/sites/joeval.jpg";
this[12] = "top/sites/manteze.jpg";
this[13] = "top/sites/moncoes.jpg";
this[14] = "top/sites/netporto.jpg";
this[15] = "top/sites/badulaks.jpg";
this[16] = "top/sites/controller.jpg";
this[17] = "top/sites/zemaria.jpg";
this[18] = "top/sites/style.jpg";
this[19] = "top/sites/luzdevelas.jpg";
this[20] = "top/sites/apaepf.jpg";
this[21] = "top/sites/alumibike.jpg";
this[22] = "top/sites/alucasa.jpg";
this[23] = "top/sites/tialex.jpg";
this[24] = "top/sites/volailles.jpg";

this.length = nrImages;
}
function makeLinks() {
this[0] = "http://www.toneis.com.br";
this[1] = "http://www.barril.com.br";
this[2] = "http://www.inteligencia.org.br";
this[3] = "http://www.churrascoecia.com.br";
this[4] = "http://www.infoparts.net";
this[5] = "http://www.portaldacachaca.com.br";
this[6] = "http://www.rafevolution.com.br";
this[7] = "http://www.prematuros.org.br";
this[8] = "http://www.brasilcachacaria.com.br";
this[9] = "http://www.neodonto.com.br";
this[10] = "http://www.segatex.com.br";
this[11] = "http://www.joeval.com.br";
this[12] = "http://www.manteze.com.br";
this[13] = "http://www.cachacamoncoes.com.br";
this[14] = "http://www.netporto.com.br";
this[15] = "http://www.badulaks.com";
this[16] = "http://www.controller.inf.br";
this[17] = "http://www.advocaciadacosta.com.br";
this[18] = "http://www.stylesexshop.com.br";
this[19] = "http://www.luzdevelas.com.br";
this[20] = "http://www.apaepf.com.br";
this[21] = "http://www.alumibike.com.br";
this[22] = "http://www.alucasa.com.br";
this[23] = "http://www.tialex.com.br";
this[24] = "http://www.volailles.com.br";


this.length = nrImages;
}

function makeTitles() {
this[0] = ":: Tonéis & Cia ::";
this[1] = ":: Barril & Cia ::";
this[2] = ":ARLS Inteligência 65:";
this[3] = ":: Churrasco e Cia ::";
this[4] = ":: Infoparts ::";
this[5] = "::Portal da Cachaça ::";
this[6] = ":: RafEvolution ::";
this[7] = ":: Prematuros ::";
this[8] = ":: Brasil Cachaçaria ::";
this[9] = ":: Neodonto ::";
this[10] = ":: Segatex ::";
this[11] = ":: Joeval ::";
this[12] = ":: Manteze ::";
this[13] = ":: Cachaça Monções ::";
this[14] = ":: Net Porto ::";
this[15] = ":: Badulaks ::";
this[16] = ":: Controller ::";
this[17] = "::Advocacia da Costa::";
this[18] = ":: Style Sex Shop ::";
this[19] = ":: Luz de Velas ::";
this[20] = ":: APae PF ::";
this[21] = ":: Alumibike ::";
this[22] = ":: Alucasa ::";
this[23] = ":: Tialex ::";
this[24] = ":: Volailles ::";




this.length = nrImages;
}

var vetTitles = new makeTitles();
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><br>"+vetTitles[cont-1]+"</a>");
break;
}
}


