$(document).ready (function (){
    bind_hover ();
    bind_path ();

    function bind_hover ()
    {
    	$(".mmenu ul li").hover(
    		function() {
    			$(this).addClass("sfhover");
    		},
    		function() {
    			$(this).removeClass("sfhover");
    		}
    	);
    }

    function bind_path ()
    {
        $(".path ul span:last").hide();
    }
});

