$(document).ready(function() {
    $("#cursos, #programa").hide();
	
    $("a#mostra").click(function() {
		$("#cursos").show("slow");
        return false;
    });
    
    $("a#mostra-prog").click(function() {
		$("#programa").show("slow");
        return false;
    });
});


        

