$(document).ready(function(){
	$('body').ajaxStart(function(){
		$('body').append("<div id='showAjaxMsg' style='top:0px;left:46%;position: fixed;z-index:999;background-color:#FFDD91;color:#000;padding:3px 5px 3px 5px;font-weight:bold;'>Carregando...</div>");
		//top:"+$(window).scrollTop()+"px
	});
	
	$('body').ajaxStop(function(){
		$('#showAjaxMsg').remove();
	});		
});
