jQuery(document).ready(function() {

	function addMega(){
		jQuery(this).addClass("hovering");
	}

  	function removeMega(){
		jQuery(this).removeClass("hovering");
	}

	var megaConfig = {
		 interval: 50,
		 sensitivity: 4,
		 over: addMega,
		 timeout: 100,
		 out: removeMega
	};

	jQuery("li.mega").hoverIntent(megaConfig)
	
	
	jQuery(".megaClose").click(function() { // Manually Close Mega-Menu
		jQuery("li.mega").removeClass("hovering");
	});


}); // JavaScript Document
