jQuery(document).ready(function($) {
	
	// $() will work as an alias for jQuery() inside of this function
	
	$("#header div.menu-header ul ul").css({display: "none"}); // Opera Fix
	$("#header div.menu-header ul li").hover(function(){
		var $dropDown = null;
		$dropDown = $(this).find('ul:first');
		$(this).siblings().children('ul').css({display: "none"});
		$dropDown.stop(false, true).css({visibility: "visible",display: "none"}).slideDown({queue:false, duration:600, easing:'easeOutBounce'}); },
		function(){ $(this).find('ul:first').stop(false, true).slideUp(375).css({visibility: "hidden"}); return false;
	});
});

/*
$("#header div.menu-header ul ul").css({display: "none"}); // Opera Fix
$("#header div.menu-header ul li").hover(function(){
	$(this).find('ul:first').stop(false, true).css({visibility: "visible",display: "none"}).slideDown({queue:false, duration:600, easing:'easeOutBounce'}); },
	function(){ $(this).find('ul:first').stop(false, true).slideUp(375).css({visibility: "hidden"}); return false;
});
});
*/
