(function($) {
	$(document).ready(function(){
		/* MENU 
	 	---------------- */
		function showSecondLevel(){
			/**$(this).children(".secondDropdown").animate({"height":"auto"},200); crashing ie **/
			$(this).children(".submenu").show(); 
			$(this).addClass("hover");
		}
		function hideSecondLevel(){ 
			$(this).children(".submenu").hide();
			$(this).removeClass("hover");
		}

		var config = {    
	     	sensitivity: 5,
	     	interval: 100,
	     	over: showSecondLevel, 
	     	timeout: 400,
	     	out: hideSecondLevel
		};

		$("#main_menu li").hoverIntent( config )
	})
})(jQuery);