// JavaScript Document
//<![CDATA[
    $(document).ready(function() {
      
		function addMega(){
			$(this).addClass("hovering");
		}
	
		function removeMega(){
			$(this).removeClass("hovering");
		}

		var megaConfig = {
			 interval: 100,
			 sensitivity: 3,
			 over: addMega,
			 timeout: 600,
			 out: removeMega
		};

		$("li.mega").hoverIntent(megaConfig)
		$("div.mega").hoverIntent(megaConfig)
      
    });
//]]>
