$(function()
{

	
	//For firefox fast mouse moving
	$("#header ul li:hover").css({ height:"59px" , overflow: "hidden" })
	
	
	$("#header ul li:has(ul)").each(function(){
									   									   
		$(this).mouseenter(function()
		{
			$(this).css({overflow : "visible", display: "block" });
			return false;
		
		}).mouseleave(
		
		function()
		{
			
			//setTimeout("alert('hello')",1250);
			//$("body").fadeIn(300, function(){
				$(this).css({ overflow : "hidden", height : "59px" });
			//} )
			return false;
		
		})// end mouseleave (mouseenter) 
	
	})//end #header ul li .each
	
})