function mainmenu(){
$(" #nav_1048909 ul ").css({display: "none"}); // Opera Fix
$(" #nav_1048909 li").hover(function(){
		$(this).find('ul:first').css({visibility: "visible",display: "none"}).show(500);
		},function(){
		$(this).find('ul:first').css({visibility: "hidden"});
		});
}

 
 
 $(document).ready(function(){					
	mainmenu();
});


		$("#noHoverIntent").hover(noHoverIntentMakeBig, noHoverIntentMakeSmall);
		$("#hoverintent").hover(hoverIntentMakeBig, hoverIntentMakeSmall);
		$("#hoveroptions").hover({
			sensitivity: 3, // How sensitive the hoverIntent should be
			interval: 200, // How often in milliseconds the onmouseover should be checked
			over: optionsMakeBig, // Function to call when mouseover is called    
			timeout:500, // How often in milliseconds the onmouseout should be checked
			out: optionsMakeSmall // Function to call when mouseout is called    

		});
		
		function noHoverIntentMakeBig() {
			$("#nohoverintent").animate( {width: 400, height: 400}, 1000 );
		}
		
		function noHoverIntentMakeSmall() {
			$("#nohoverintent").animate( {width: 200, height: 200}, 1000 );
		}
		
		function hoverIntentMakeBig() {
			$("#hoverintent").animate( {width: 400, height: 400}, 1000 );
		}
		
		function hoverIntentMakeSmall() {
			$("#hoverintent").animate( {width: 200, height: 200}, 1000 );
		}
		
		function optionsMakeBig() {
			$("#hoveroptions").animate( {width: 400, height: 400}, 1000 );
		}
		
		function optionsMakeSmall() {
			$("#hoveroptions").animate( {width: 200, height: 200}, 1000 );
		}

	

