jQuery(function($) {
	
	$("div.menu-header ul li.menu-item, div.menu-header-menu-container ul li.menu-item").hover(
		function () {
			$(this).addClass('active').children('ul').show();
		}, 
		function () {
			$(this).children('ul').fadeOut(150, function(){
				$(this).parents('li').removeClass('active');
			});
		}
	);

});
