jQuery(document).ready(function(){mb_init();});

var mb_init = function () {
	jQuery('#home_categories1 > li').each(function () {
		jQuery(this).find(">ul").css({marginTop: - (jQuery(this).find(">ul").height() + 2) - jQuery(this).height()+3});
	});
	jQuery('#home_categories1 > li').hover(function () {
		var e = jQuery(this).find(">ul");
		if (e.length == 0) return;
		e.queue("fx", []);
	    e.stop();
		e.css({display:'block',opacity:0}).animate({opacity: 1}, 300);
	}, function () {
		var e = jQuery(this).find(">ul");
		if (e.length == 0) return;
		e.queue("fx", []);
	    e.stop();
		e.hide();
	});
}
