
    /* Aplicação de hover na navegacaoSecao */
    /* ====================================================================== */

	$("#navegacao *").hover(function() {
       $(this).addClass('hover');
    }, function() {
        $(this).removeClass('hover');
    });

    $("#navegacao ul").hover(function() {
       $(this).parent().find('> a').addClass('hover');
    }, function() {
        $(this).parent().find('> a').removeClass('hover');
    });

    $("#navegacao > ul > li").hover(function() {
       $(this).find('> a').addClass('hover');
    }, function() {
        $(this).find('> a').removeClass('hover');
    });


   