// JavaScript Document
var max = 17;
var nrImages = 17;
function makeImages() {
this[0] = "publi_200/bp_fueltech_01.gif";
this[1] = "publi_200/bp_fueltech_02.gif";
this[2] = "publi_200/bp_fueltech_03.gif";
this[3] = "publi_200/bp_pandoo_03.gif";
this[4] = "publi_200/bp_fueltech_04.gif";
this[5] = "publi_200/bp_pandoo_01.jpg";
this[6] = "publi_200/bp_fueltech_05.gif";
this[7] = "publi_200/bp_pandoo_02.jpg";
this[8] = "publi_200/bp_fueltech_06.gif";
this[9] = "publi_200/bp_fueltech_07.gif";
this[10] = "publi_200/bp_kn_01.gif";
this[11] = "publi_200/bp_garrett_01.gif";
this[12] = "publi_200/bp_garrett_02.gif";
this[13] = "publi_200/bp_garrett_03.gif";
this[14] = "publi_200/bp_odg_01.gif";
this[15] = "publi_200/bp_displatec_01.gif";
this[16] = "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/busca-138785-meter";
this[3] = "http://loja.tray.com.br/loja/produto-138785-1206-pandoo_efi4";
this[4] = "http://loja.tray.com.br/loja/busca-138785-datalogger";
this[5] = "http://loja.tray.com.br/loja/produto-138785-1206-pandoo_efi4";
this[6] = "http://loja.tray.com.br/loja/produto-138785-1210-fire_pro";
this[7] = "http://loja.tray.com.br/loja/produto-138785-1206-pandoo_efi4";
this[8] = "http://loja.tray.com.br/loja/busca-138785-peak";
this[9] = "http://loja.tray.com.br/loja/busca-138785-sparkpro";
this[10] = "http://loja.tray.com.br/loja/catalogo.php?loja=138785&IdDep=8&IdCatSel=53";
this[11] = "http://loja.tray.com.br/loja/catalogo.php?loja=138785&IdDep=12&IdCatSel=75";
this[12] = "http://loja.tray.com.br/loja/catalogo.php?loja=138785&IdDep=12&IdCatSel=75";
this[13] = "http://loja.tray.com.br/loja/catalogo.php?loja=138785&IdDep=12&IdCatSel=75";
this[14] = "http://loja.tray.com.br/loja/catalogo.php?loja=138785&IdDep=4&IdCatSel=33";
this[15] = "http://loja.tray.com.br/loja/catalogo.php?loja=138785&IdDep=11&IdCatSel=66";
this[16] = "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;
}
}