// JavaScript Document
function getNews(a){
	document.getElementById('latestNews').innerHTML = '<img src="img/loading49.gif" width="220" height="220" style="margin:50px 20px;"  />';
	//document.getElementById('latestNews').innerHTML = '<img src="img/loading42.gif" width="220" height="52" style="margin:50px 20px;"  />';
	createAjax('modulos/ajax-news.php','i='+ a.toString(), putNews)
}
function putNews(a){
	document.getElementById('latestNews').innerHTML = a;
	document.getElementById('panelRight').style.backgroundColor = '#FFF';
}


