$(document).ready(function() {
    $('#header .menu .projetos > a').live('click', function() {
        if($(this).parent().hasClass('active')){
            $(this).parent().removeClass('active');
            $('.open_proj').slideUp();
        } else {
            $(this).parent().addClass('active');
            $('.open_proj').slideDown();
        }
        return false;
    })

    $('#header .menu .open_proj .cats > li > a').live('click', function() {
        $('#header .menu .open_proj .cats .projs').slideUp();

        $(this).parent().find('.projs').slideDown();

        return false;
    })
})
