
$(document).ready(function() {

    function addMega() {
        $(this).addClass("mainMenuHover");
    }

    function removeMega() {
        $(this).removeClass("mainMenuHover");
    }

    var megaConfig = {
        interval: 150,
        sensitivity: 10,
        over: addMega,
        timeout: 700,
        out: removeMega
    };

    $("#topnav ul li.mainMenu").hoverIntent(megaConfig);
});
