function carregaNoticias() {
	var xmlHttpRequest = new RequestHttp();		
						
	var container = document.getElementById("noticias");			
	container.innerHTML = "<br /><img src='images/loading.gif' align='absmiddle' width='20' height='20' /> Carregando not&iacute;cias...<br /><br />"; 		
		
	xmlHttpRequest.onreadystatechange=function() {
		if (xmlHttpRequest.readyState == 4) {
			var container = document.getElementById("noticias");
			container.innerHTML = xmlHttpRequest.responseText;			
		}
	}
		
	xmlHttpRequest.open("GET", "include/ajaxNoticia.php", true);	
	xmlHttpRequest.send(null);
}