$(document).ready(function() {
function addMega(){ $(this).addClass("hovering"); $($(this).find("h2 a")).addClass("hover"); } function removeMega(){ $(this).removeClass("hovering"); $($(this).find("h2 a")).removeClass("hover"); } 
    var megaConfig = {
         interval: 200,
         sensitivity: 4,
         over: addMega,
         timeout: 200,
         out: removeMega
    };
    $("li.mega").hoverIntent(megaConfig)
});