function startList() {
	if (document.all&&document.getElementById) {
		navRoot = document.getElementById("Menu");
		for (i=0; i<navRoot.childNodes.length; i++) {
			node = navRoot.childNodes[i];
			if (node.nodeName=="LI") {
				node.onmouseover=function() {
					this.style.backgroundPosition="0 -39px";
				}
				node.onmouseout=function() {
					this.style.backgroundPosition="0 0";
				}
			}
		}
	}
}

function mudaTop() {
	if (document.all&&document.getElementById) {
	alturaEspaco = document.getElementById("curveSpacer").offsetHeight+20;
		ajuste = 30;
	} else {
	alturaEspaco = document.getElementById("curveSpacer").offsetHeight+35;
		ajuste = 40;
	}
	alturaMiddle = document.getElementById("Middle").offsetHeight;
	novaAltura = alturaEspaco+alturaMiddle-480+"px";
	if (alturaMiddle > 485) {
		document.getElementById("Middle").style.height = document.getElementById("Middle").offsetHeight+ajuste+"px";
		document.getElementById("curveSpacer").style.height = novaAltura;
	}
}

window.onload = function() {
	startList();
	extLinks();
	if (document.getElementById("curveSpacer")) {
		mudaTop();
	}
}


function extLinks() {
	var links = document.getElementsByTagName('a');
	for (i=links.length;i!=0;i--) {
		var a = links[i-1];
		if (a.className == 'blank') {
		/*
			if (!a.href.indexOf('http:\/\/') && a.href.indexOf('http://www.ellopuma.com.br/')) a.onclick = function() {
				extPop(this.href);
				return false;
			};
*/
		a.setAttribute("target", "_blank");
		};
	};
};