(function($) {
	$(document).ready(function() {

		/* MENU 
	 	---------------- */
		function showSecondLevel(){
			$(this).children(".secondDropdown").slideDown(); 
			$(this).addClass("hover");
		}
		function hideSecondLevel(){ 
			$(this).children(".secondDropdown").slideUp();
			$(this).removeClass("hover");
		}

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

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