$(document).ready(function () {

    function HoverOver() {
        $(this).find('.subLevel').show(); //first().stop(false,true).slideDown(200);
        $(this).addClass('hover');
    }

    function HoverOut() {
        $(this).removeClass('hover');
        $(this).find('.subLevel').hide(); //first().stop(false, true).slideUp(200);
    }

    var config = {
        sensitivity: 1,
        interval: 100,
        over: HoverOver,
        timeout: 500,
        out: HoverOut
    };

    //$("#dnnMenu .topLevel > li.haschild").hoverIntent(config);

    $("#dnnMenu .topLevel > li.haschild").hover(HoverOver, HoverOut);
    $(".subLevel li.haschild").hover(HoverOver, HoverOut);

});
