
<!--

/***********************************************
* Script para habilitar o menu para o IE
***********************************************/



sfHover = function() {
	var sfEls = document.getElementById("nav").getElementsByTagName("LI");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" sfhover";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);




/***********************************************
* Script para abrir janelas
***********************************************/

		function novajanela(janela) {
			args = "width=" + (700) + ",height=" + (505)
			+ ",location=0,menubar=0,resizable=1,scrollbars=yes,status=0,titlebar=no,"
			+ "toolbar=0,hotkeys=0,z-lock=1,screenx=0,screeny=0,left=20,top=10";
			window.open( janela,'',args );
		}





<!--
startList = function() {

	// code for IE
	if(!document.body.currentStyle) return;
	var subs = document.getElementsByName('submenu');
	for(var i=0; i<subs.length; i++) {
		var li = subs[i].parentNode;
		if(li && li.lastChild.style) {
			li.onmouseover = function() {
				this.lastChild.style.visibility = 'visible';
			}
			li.onmouseout = function() {
				this.lastChild.style.visibility = 'hidden';
			}
		}
	}
}
window.onload=startList;
-->

