function listarNoticia(offset)
{
	
	$().ajaxStart(function(){ $("#divVotarCarregando").hide();$("#divListarNoticia").show(); });
	$.post("tratamento/noticia/trata.listar.php",
	{
		
		offset	: offset	
		
	},
	function(retorno)
	{
		
		$("#texto").html(retorno);	
		
	}
	)	
	$().ajaxStop(function(){$("#divListarNoticia").hide(); });
	
}
