// JavaScript Document
var max = 9;
var nrImages = 9;
function makeImages() {
this[0] = "publi_200/bp_fueltech_01.gif";
this[1] = "publi_200/bp_fueltech_02.gif";
this[2] = "publi_200/bp_pandoo_03.gif";
this[3] = "publi_200/bp_pandoo_01.jpg";
this[4] = "publi_200/bp_pandoo_02.jpg";
this[5] = "publi_200/bp_fueltech_06.gif";
this[6] = "publi_200/bp_kn_01.gif";
this[7] = "publi_200/bp_odg_01.gif";
this[8] = "publi_200/bp_mt_01.gif";
this.length = nrImages;
}
function makeLinks() {
this[0] = "http://loja.tray.com.br/loja/produto-138785-1208-boost_controler";
this[1] = "http://loja.tray.com.br/loja/produto-138785-1209-race_pro1fi";
this[2] = "http://loja.tray.com.br/loja/produto-138785-1206-pandoo_efi4";
this[3] = "http://loja.tray.com.br/loja/produto-138785-1206-pandoo_efi4";
this[4] = "http://loja.tray.com.br/loja/produto-138785-1206-pandoo_efi4";
this[5] = "http://loja.tray.com.br/loja/busca-138785-peak";
this[6] = "http://loja.tray.com.br/loja/catalogo.php?loja=138785&IdDep=8&IdCatSel=53";
this[7] = "http://loja.tray.com.br/loja/catalogo.php?loja=138785&IdDep=4&IdCatSel=33";
this[8] = "http://loja.tray.com.br/loja/catalogo.php?loja=138785&IdDep=9&IdCatSel=58";
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;
}
}