$(document).ready(function() {
		$('.noticias *:not(h2.tit)').hide();
		$('.noticias h2.tit').after('<a href="#" class="sm"> [Saiba mais]</a>');	
		$('.noticias').prepend('<a href="#" class="fe">Fechar X</a>');	
		var a  = [];
		$('span').each(function(j) {
		a.push($(this).text());
		$('.noticias h2.tit:eq('+ j +')').after(a[j]);
		})
		
			$('.sm').click(function(event) {
			event.preventDefault();
			$(this).parents('.noticias').children().fadeIn(2000);
			$(this).parents('.noticias').siblings('.noticias').children('*:not(h2.tit, .sm)').hide();
			
			$('.sm').text('[Saiba mais]');
			$(this).text('');
			}); 
	
			$('.fe').click(function(event) {
			event.preventDefault();
			$(this).parent().children('*:not(h2.tit, .sm)').hide();
			$('.sm').text('[Saiba mais]');
			}); 
	});