var o;
var hall = function(){jQuery("div.mm.lvl1 > div.mm.lvl2").hide();}
jQuery(document).ready(function(){
	jQuery("div.mm.lvl1 > a").hover(function(){
			o = jQuery(this).next();
			if (o.css('display') =='none')
			{
				setTimeout("hall();o.fadeIn();",200);
			}
		});
	//jQuery("div.mm > div.mm").mouseleave(function(){jQuery(this).fadeOut();});
	hall();
});

jQuery(document).ready(function(){ 
        jQuery("ul.sf-menu").supersubs( { minWidth: 10, maxWidth: 35 } ).superfish({ 
            delay:     200
        });
});
