//	alert('antes');
$(document).ready(function() {
	$('div.geralnoticias').each(function(i, elemento){

		$(elemento).find('p').hide();
		$(elemento).find('a.mais').click(
			function(){
				$(elemento).find('p').show('slow');
			});
				$(elemento).find('a.menos').click(
			function(){
				$(elemento).find('p').hide('slow');
			}
);
	});
	
//	$('div.calendario').each(function(i, elemento){

//		$(elemento).find('table').hide();
	//	$(elemento).find('a.mais').click(
		//	function(){
//				$(elemento).find('table').show('slow');
	//		});
//				$(elemento).find('a.menos').click(
//			function(){
//				$(elemento).find('table').hide('slow');
//			}
//);
//	});	
	


	

});
