var max = 10;
var nrImages = 12;
function makeImages() {
	this[0] = "topo/topo11.jpg";
	this[1] = "topo/topo12.jpg";
	this[2] = "topo/topo13.jpg";
	this[3] = "topo/topo14.jpg";
	this[4] = "topo/topo15.jpg";
	this[5] = "topo/topo16.jpg";
	this[6] = "topo/topo17.jpg";
	this[7] = "topo/topo18.jpg";
	this[8] = "topo/topo19.jpg";
	this[9] = "topo/topo20.jpg";
	this[10] = "topo/topo21.jpg";
	this[11] = "topo/topo22.jpg";
	/*
	this[12] = "/topo/topo22.jpg";
	*/
	

	this.length = nrImages;
}

function makeLinks() {
	this[0] = "http://www.rachamania.com.br/home.html";
	this[1] = "http://www.rachamania.com.br/home.html";
	this[2] = "http://www.rachamania.com.br/home.html";
	this[3] = "http://www.rachamania.com.br/home.html";
	this[4] = "http://www.rachamania.com.br/home.html";
	this[5] = "http://www.rachamania.com.br/home.html";
	this[6] = "http://www.rachamania.com.br/home.html";
	this[7] = "http://www.rachamania.com.br/home.html";
	this[8] = "http://www.rachamania.com.br/home.html";
	this[9] = "http://www.rachamania.com.br/home.html";
	this[10] = "http://www.rachamania.com.br/home.html";
	this[11] = "http://www.rachamania.com.br/home.html";
	/*
	this[12] = "http://www.rachamania.com.br/home.html";
	this[13] = "http://www.rachamania.com.br/home.html";
	this[14] = "http://www.rachamania.com.br/home.html";
	this[15] = "http://www.rachamania.com.br/home.html";
	this[16] = "http://www.rachamania.com.br/home.html";
	this[17] = "http://www.rachamania.com.br/home.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=principal><img src="+vetImages[cont-1]+" border=0></a>");
	break;
}
}
