/*
$(document).ready(function(){
	$(".mnu_lvl1 li").click(
        	function(){
        		$(".mnu_lvl1 ul").hide();
        		$("ul", this).show();
        	}
		)
});
*/
/*


$(document).ready(function(){
	$(".mmenu li").hover(
        function(){ 
        	$("ul", this).fadeIn("normal");
        	$("ul", this).animate({opacity:1.1},0); 
        }, 
        function() { $("ul", this).fadeOut("fast");
	}
    );
    if (document.all) {
        //$(".mmenu li").hoverClass ("sfHover");
    }
});

$.fn.hoverClass = function(c) {
    return this.each(function(){
        $(this).hover( 
            function() { $(this).addClass(c);  },
            function() { $(this).removeClass(c); }
        );
    });
}; 
*/