$(document).ready(function(){
    $('.cursos li a.tit-azul-plus').each(function(){
        $(this).bind('click',function(){
            var conteudo = $(this).attr('class').split(' ');
            $('.conteudo-curso').hide();
            $('#'+conteudo[1]).show(); 
            return false;
        });
    });
}); 
