function NoticiasHome(){
	jQuery(document).ready(function(){
		jQuery('#noticiasHome').html('<img src="images/carregando.gif" />')
		jQuery.ajax({
			url : 'includes/ajax/noticia.ajax.asp'
			,method : 'GET'
			,data : 'acao=noticiasHome'
			,cache : false
			,success : function(retorno){
				jQuery('#noticiasHome').html(retorno);	
			}
		})						
	})
}
function EstamosEmObraHome(){
	jQuery(document).ready(function(){
		jQuery('#estamosEmObraHome').html('<img src="images/carregando.gif" />')
		jQuery.ajax({
			url : 'includes/ajax/obra.ajax.asp'
			,method : 'GET'
			,data : 'acao=estamosEmObraHome'
			,cache : false
			,success : function(retorno){
				jQuery('#estamosEmObraHome').html(retorno);	
			}
		})						
	})
}
//carregar as duas noticias da home
NoticiasHome();
//carregar um Registro da secao estamos em obra
EstamosEmObraHome();