
$(document).ready(function() {

    function addMega() {
        $(this).addClass("hovering");
    }

    function removeMega() {
        $(this).removeClass("hovering");
    }

    var megaConfig = {
        interval: 0,
        sensitivity: 4,
        over: addMega,
        timeout: 0,
        out: removeMega
    };
  
    $("li.products-menu").hoverIntent(megaConfig)
    $("li.story-menu").hoverIntent(megaConfig)
    $("li.social-menu").hoverIntent(megaConfig)
    $("div#top-nav-cart").hoverIntent(megaConfig)

});
