$(document).ready(function(){
    $("#navPrimary ul li").hover(
        function(){ $(this).children("ul").css( {display:"none"} ).fadeIn("slow"); }, 
        function() {$(this).children("ul").css( {display:"none"} ).fadeOut("fast");  } 
    );
    if (document.all) {
        $("#navPrimary ul li").hover(
		function(){ $(this).addClass("sfHover"); },
        function() { }  );
    }

	$(".level-2").css({opacity: "0.9999", display: "block"});
});

