// faz o menu funcionar no Internet Explorer 6

function MostraSM(MenuNum) {
	if(navigator.appName == "Microsoft Internet Explorer") {
		document.getElementById("s"+MenuNum).style.display="block";
		document.getElementById("item-pai"+MenuNum).style.background="url(../_Imgs/fundo_menuitem_on.jpg) repeat-x #FEA bottom";
	};
};
function OcultaSM(MenuNum) {
	if(navigator.appName == "Microsoft Internet Explorer") {
		document.getElementById("s"+MenuNum).style.display="none";
		document.getElementById("item-pai"+MenuNum).style.background="transparent";
	}
};