var noticia_activa = 0;
$(function() {
	$('.una_noticia').click(function() {
		indice = this.id;
		if (indice != noticia_activa) {
			$("#noticia_" + noticia_activa).hide('blind', {duration: 500}, function(){
				$("#noticia_" + indice).show('blind', {duration: 1000});			
			});

			noticia_activa = indice;
		}
		
		return true;
	});
	
});
