<!-- Script to show menu options //-->

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);

//Subitens do menu lateral
function mostraSubItens(cnt){
	var lnklat = document.getElementById("lnklat"+cnt);
	if (lnklat.style.display=='')
		lnklat.style.display = 'none';
	else
		lnklat.style.display = '';
	 	
}

//Página inicial
function setHomepage()
{
	if (document.all)
    {
        document.body.style.behavior='url(#default#homepage)';
  		document.body.setHomePage('http://www.brasileirosnaholanda.com');

    }
    else if (window.sidebar)
    {
   	    if(window.netscape)
    	{
            try
   		    {  
            	netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");  
         	}  
        	catch(e)  
         	{  
    			alert("Por padrão o Firefox vem com está opção bloqueada, se você quer habilitá-la, por favor digite na URL 'about:config',e mude o valor da opção 'signed.applets.codebase_principal_support' para 'true'");  
         	}
    	}
    	var prefs = Components.classes['@mozilla.org/preferences-service;1'].getService(Components. interfaces.nsIPrefBranch);
    	prefs.setCharPref('browser.startup.homepage','http://www.orkut.com');
	}
}


//-->
