$(document).ready(function(){
    $('.departamento').live('click',function(){
        loading();
        
        var id = $(this).attr('id');
        
        $.post('../ajax/departamento.ajax.php',{
            id:id
        },function(res){
            $('#texto_conteudo').html(res);
        });
    });
});
