$(function () {
    $('#menu-meu-menu li').hover(
        function () {
            if ($(this).find('ul').size()) {
                $(this).find('ul').fadeIn();
            }
        },
        function () {
            if ($(this).find('ul').size()) {
                $(this).find('ul').hide();
            }
        }
    );
});

