function buscarNoticia(offset)
{
	
	$().ajaxStart(function(){ $("#divVotarCarregando").hide();$("#divListarNoticia").hide(); $("#carregandoGeral").show() });
	$.post("tratamento/noticia/trata.buscarNoticia.php",
	{
		
		strDescricao	: $("#strBusca").val(),
		intOffset		: offset
		
	},
	function(retorno)
	{
		
		$("#conteudo2").html(retorno);		
	}
	)
	$().ajaxStop(function(){$("#carregandoGeral").hide(); });
	
}
