function showMenu() {
    if ($.browser.msie) {
        $(this).find('.nav-drop-down').show();
    } else {
        $(this).find('.nav-drop-down').stop(true, true).fadeIn(300);
    }
}

function hideMenu() {
    if ($.browser.msie) {
        $(this).find('.nav-drop-down').hide();
    } else {
        $(this).find('.nav-drop-down').stop(true, true).fadeOut(300);
    }
}

function highlightItem() {
    $(this).css({
        'font-size' : '11px'
    });
}

function unhighlightItem() {
    $(this).css({
        'font-size' : '10px'
    });
}

$(document).ready(function (){
    $('.nav-item').hoverIntent({
        over: showMenu,
        timeout: 750,
        out: hideMenu
    });

    $('.nav-item li a').hover(highlightItem, unhighlightItem);
});
