// JavaScript Document
var max = 12;
var nrImages = 12;
function makeImages() {
this[0] = "parceiros/logo_parceiros_13.gif";
this[1] = "parceiros/logo_parceiros_14.gif";
this[2] = "parceiros/logo_parceiros_15.gif";
this[3] = "parceiros/logo_parceiros_16.gif";
this[4] = "parceiros/logo_parceiros_17.gif";
this[5] = "parceiros/logo_parceiros_18.gif";
this[6] = "parceiros/logo_parceiros_19.gif";
this[7] = "parceiros/logo_parceiros_20.gif";
this[8] = "parceiros/logo_parceiros_21.gif";
this[9] = "parceiros/logo_parceiros_35.gif";
this[10] = "parceiros/logo_parceiros_22.gif";
this[11] = "parceiros/logo_parceiros_23.gif";
this.length = nrImages;
}
function makeLinks() {
this[0] = "http://loja.tray.com.br/loja/busca.php?loja=138785&avancada=1&buscamarca=FuelTech";
this[1] = "http://loja.tray.com.br/loja/busca.php?loja=138785&avancada=1&buscamarca=Garrett";
this[2] = "http://loja.tray.com.br/loja/busca.php?loja=138785&avancada=1&buscamarca=Giba";
this[3] = "http://loja.tray.com.br/loja/busca.php?loja=138785&avancada=1&buscamarca=Iapel";
this[4] = "http://loja.tray.com.br/loja/busca.php?loja=138785&avancada=1&buscamarca=Imohr";
this[5] = "http://loja.tray.com.br/loja/busca.php?loja=138785&avancada=1&buscamarca=JE%20Pistons";
this[6] = "http://loja.tray.com.br/loja/busca.php?loja=138785&avancada=1&buscamarca=K&N";
this[7] = "http://loja.tray.com.br/loja/busca.php?loja=138785&avancada=1&buscamarca=Lotse";
this[8] = "http://loja.tray.com.br/loja/busca.php?loja=138785&avancada=1&buscamarca=Master%20Power";
this[9] = "http://loja.tray.com.br/loja/busca.php?loja=138785&avancada=1&buscamarca=Mickey%20Thompson";
this[10] = "http://loja.tray.com.br/loja/busca.php?loja=138785&avancada=1&buscamarca=Militec";
this[11] = "http://loja.tray.com.br/loja/busca.php?loja=138785&avancada=1&buscamarca=MSD";
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=_self><img src="+vetImages[cont-1]+" border=0></a>");
break;
}
}