﻿jQuery(function ($) {

    function menuHoverOver() {
        $(this).addClass('mHover').find("ul").stop().show();
    }

    function menuHoverOut() {
        $(this).removeClass('mHover').find("ul").stop().fadeOut('fast', function () {
            $(this).hide();
        });
    }

    var config = {
        sensitivity: 2,
        interval: 100,
        over: menuHoverOver,
        timeout: 500,
        out: menuHoverOut
    };

    $(".ui\\-nav\\-control .mRoot").hoverIntent(config); //Trigger Hover intent with custom configurations

});
