// JavaScript Document
var max = 11;
var nrImages = 11;
function makeImages() {
this[0] = "parceiros/logo_parceiros_24.gif";
this[1] = "parceiros/logo_parceiros_25.gif";
this[2] = "parceiros/logo_parceiros_26.gif";
this[3] = "parceiros/logo_parceiros_27.gif";
this[4] = "parceiros/logo_parceiros_28.gif";
this[5] = "parceiros/logo_parceiros_29.gif";
this[6] = "parceiros/logo_parceiros_30.gif";
this[7] = "parceiros/logo_parceiros_31.gif";
this[8] = "parceiros/logo_parceiros_32.gif";
this[9] = "parceiros/logo_parceiros_33.gif";
this[10] = "parceiros/logo_parceiros_34.gif";
this.length = nrImages;
}
function makeLinks() {
this[0] = "http://loja.tray.com.br/loja/busca.php?loja=138785&avancada=1&buscamarca=NGK";
this[1] = "http://loja.tray.com.br/loja/busca.php?loja=138785&avancada=1&buscamarca=ODG";
this[2] = "http://loja.tray.com.br/loja/produto-138785-1206-pandoo_efi4";
this[3] = "http://loja.tray.com.br/loja/busca.php?loja=138785&avancada=1&buscamarca=Pauter";
this[4] = "http://loja.tray.com.br/loja/busca.php?loja=138785&avancada=1&buscamarca=PowerTech";
this[5] = "http://loja.tray.com.br/loja/busca.php?loja=138785&avancada=1&buscamarca=Ross";
this[6] = "http://loja.tray.com.br/loja/busca.php?loja=138785&avancada=1&buscamarca=San%20Marino";
this[7] = "http://loja.tray.com.br/loja/busca.php?loja=138785&avancada=1&buscamarca=Scat";
this[8] = "http://loja.tray.com.br/loja/busca.php?loja=138785&avancada=1&buscamarca=TAG";
this[9] = "http://loja.tray.com.br/loja/busca.php?loja=138785&avancada=1&buscamarca=Weldon";
this[10] = "http://loja.tray.com.br/loja/busca.php?loja=138785&avancada=1&buscamarca=Wiseco";
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;
}
}