$(document).ready(function() {
		function addMega(){
		$(this).addClass("hovering");
		$($(this).find("li.mega div")).addClass("hover");
	}

		function removeMega(){
		$(this).removeClass("hovering");
		$($(this).find("li.mega div")).removeClass("hover");
	}
    var megaConfig = {
         interval: 0,
         sensitivity: 6,
         over: addMega,
         timeout: 0,
         out: removeMega
    };
    $("li.mega").hoverIntent(megaConfig)
    });


	
	

