function ListagemNoticias(p){
	jQuery('.container').html('<h2>Noticias Univias</h2><img id="imgCarregando" src="images/carregando.gif" />');
	jQuery.ajax({
		url : 'includes/ajax/noticia.ajax.asp'
		,method : 'GET'
		,data : 'acao=listagemNoticias&p='+p
		,cache : false
		,success : function(retorno){
			jQuery('.container').html('<h2>Noticias Univias</h2>'+retorno);
			jQuery('#imgCarregando').hide();
		}
	})						
}
//carregar as duas noticias da home
jQuery(window).load(function(){ListagemNoticias(1)});
