jQuery(document).ready(function() {
	function addMega(){
		jQuery(this).addClass("hovering");
	}
	
	function removeMega(){
		jQuery(this).removeClass("hovering");
	}
	
	var megaConfig = {
		interval: 300,
		sensitivity: 4,
		over: addMega,
		timeout: 300,
		out: removeMega
	};
	
	jQuery("li.mega").hoverIntent( megaConfig );
	
	jQuery(".mega h2 a").click(function() {
		return false;
	});
});