// JavaScript Document
var max = 9;
var nrImages = 9;
function makeImages() {
this[0] = "publi_200/bp_fueltech_03.gif";
this[1] = "publi_200/bp_fueltech_04.gif";
this[2] = "publi_200/bp_fueltech_05.gif";
this[3] = "publi_200/bp_fueltech_07.gif";
this[4] = "publi_200/bp_garrett_01.gif";
this[5] = "publi_200/bp_garrett_02.gif";
this[6] = "publi_200/bp_garrett_03.gif";
this[7] = "publi_200/bp_displatec_01.gif";
this[8] = "publi_200/bp_mt_01.gif";
this.length = nrImages;
}
function makeLinks() {
this[0] = "http://loja.tray.com.br/loja/busca-138785-meter";
this[1] = "http://loja.tray.com.br/loja/busca-138785-datalogger";
this[2] = "http://loja.tray.com.br/loja/produto-138785-1210-fire_pro";
this[3] = "http://loja.tray.com.br/loja/busca-138785-sparkpro";
this[4] = "http://loja.tray.com.br/loja/catalogo.php?loja=138785&IdDep=12&IdCatSel=75";
this[5] = "http://loja.tray.com.br/loja/catalogo.php?loja=138785&IdDep=12&IdCatSel=75";
this[6] = "http://loja.tray.com.br/loja/catalogo.php?loja=138785&IdDep=12&IdCatSel=75";
this[7] = "http://loja.tray.com.br/loja/catalogo.php?loja=138785&IdDep=11&IdCatSel=66";
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;
}
}