//<![CDATA[
    $(document).ready(function() {
     
      function addMega(){
        $(this).addClass("hovering");
        }
      function removeMega(){
        $(this).removeClass("hovering");
        }
    var megaConfig = {
         over: addMega,
         out: removeMega
    };
    $("li.mega").hoverIntent(megaConfig)
    });
    //]]>
