jQuery(function() {

	var newSelection = "";
	
	jQuery("#cursos-nav a").click(function(){
	
	    jQuery("#all-cursos").fadeTo(200, 0.10);
	
		jQuery("#cursos-nav a").removeClass("current");
		jQuery(this).addClass("current");
		
		newSelection = jQuery(this).attr("rel");
		
		jQuery(".cursos").not("."+newSelection).slideUp();
		jQuery("."+newSelection).slideDown();
		
	    jQuery("#all-cursos").fadeTo(600, 1);
		
	});
	
});
