	var act = 0;
	$(document).ready(function(){
		$('.numero').each(function(i){
			$(this).click(function(){
				if(i!=act){
					$('.numero:eq('+i+')').addClass('selec');
					$('.noticia:eq('+act+')').hide('slow');
					$('.noticia:eq('+i+')').show('slow');
					$('.numero:eq('+act+')').removeClass('selec');
				act = i;
				}
			});
		});
	});