// JavaScript Document

var max = 20;
var nrImages = 20;
function makeImages() {
this[0] = "Imagens/db50-destaque.gif";
this[1] = "Imagens/db100-destaque.gif";
this[2] = "Imagens/db150-destaque.gif";
this[3] = "Imagens/db200-destaque.gif";
this[4] = "Imagens/db200V-destaque.gif";
this[5] = "Imagens/db900-destaque.gif";
this[6] = "Imagens/db1000-destaque.gif";
this[7] = "Imagens/db1000-plus-destaque.gif";
this[8] = "Imagens/db2000-plus-destaque.gif";
this[9] = "Imagens/db2000-mz-destaque.gif";
this[10] = "Imagens/db3000-destaque.gif";
this[11] = "Imagens/dbp10-destaque.gif";
this[12] = "Imagens/dbp20-destaque.gif";
this[13] = "Imagens/dbp30-destaque.gif";
this[14] = "Imagens/dbp40-destaque.gif";
this[15] = "Imagens/dbp50-destaque.gif";
this[16] = "Imagens/dbp60-destaque.gif";
this[17] = "Imagens/dbp70-destaque.gif";
this[18] = "Imagens/projetos-destaque.gif";
this[19] = "Imagens/bndes-destaque.gif";
this.length = nrImages;
}
function makeLinks() {
this[0] = "db50.html";
this[1] = "db100.html";
this[2] = "db150.html";
this[3] = "db200.html";
this[4] = "db200-v.html";
this[5] = "db900.html";
this[6] = "db1000.html";
this[7] = "db1000-plus.html";
this[8] = "db2000-plus.html";
this[9] = "db2000-3z.html";
this[10] = "db3000.html";
this[11] = "torniquete.html";
this[12] = "porta-giratoria.html";
this[13] = "catraca.html";
this[14] = "proximidade.html";
this[15] = "dbp50.html";
this[16] = "eletroima.html";
this[17] = "dbp70.html";
this[18] = "projetos.html";
this[19] = "bndes.html";
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;
}
}
