
function IEHoverPseudo() {

	var navItems = document.getElementById("primary-nav").getElementsByTagName("li");

	for (var i=0; i<navItems.length; i++) {
		if(navItems[i].className == "menuparent") {
			navItems[i].onmouseover=function() { this.className += " over"; }
			navItems[i].onmouseout=function() { this.className = "menuparent"; }
		}
	}

}
window.onload = IEHoverPseudo;

function mudacor(id){

	document.getElementById(id).style.background = "#5C96A6 url(imagens/seta-menu.gif) no-repeat scroll 144px 14px";
	document.getElementById(id).style.color = "#FFFFFF";

}

function setnormal(id){

	document.getElementById(id).style.background = "none";
	document.getElementById(id).style.color = "#777777";

}

function mudafundo(id){

	document.getElementById(id).style.background = "";
	document.getElementById(id).style.color = "#777777";

}