// JavaScript Document

/*
comecaList = function() {
	if (document.all&&document.getElementById) {
		menulRoot = document.getElementById("menu-lateral");
		for (i=0; i<menulRoot.childNodes.length; i++) {
			no = menulRoot.childNodes[i];
			if (no.nodeName=="LI") {
				no.onmouseover=function() {
					this.className+=" mostra";
				}
				no.onmouseout=function() {
					this.className=this.className.replace(" mostra", "");
				}
			}
		}
	}
}
window.onload=comecaList;
*/



tms=new Array()

//Mostra o submenu no mouseover
function over(n){
	if(typeof(tms[n])!="undefined") {
		clearTimeout(tms[n])
	}
    document.getElementById(n).style.visibility="visible";
}
//Esconde o submenu no mouseout
function out(n){
    tms[n]=setTimeout('document.getElementById("'+ n +'").style.visibility="hidden"',10);
}
