// JavaScript Document
$(document).ready(function() {
      
      function addMega(){
        $(this).addClass("hovering");
        }

      function removeMega(){
        $(this).removeClass("hovering");
        }

    var megaConfig = {
         interval: 10,
         sensitivity: 10,
         over: addMega,
         timeout: 50,
         out: removeMega
    };

    $("li.mega").hoverIntent(megaConfig)

      
    });
