    $(document).ready(function() {
      
     function addMega(){
        $(this).addClass("hovering");
        }

      function removeMega(){
        $(this).removeClass("hovering");
        }

		var megaConfig = {
			 interval: 100,
			 sensitivity: 4,
			 over: addMega,
			 timeout: 100,
			 out: removeMega
		};
	
		$("li.mega").hoverIntent(megaConfig);
		
		
		/*$("li.mega").hover(function() {
        	$(this).addClass("hovering");
		
		}, function() {
        	$(this).removeClass("hovering");

		
		});*/
		

		$("li.mega div ul li a").hover(function() {
			$(this).css("color", "#333333");
		
		}, function() {
			$(this).css("color", "#848b8e");

		
		});
      
    });



