function initLoading(o){	
	// Loading
	$('<div id="_loading" class="loading">Carregando...</div>').appendTo('body');
	$('#_loading').hide();
	$('#_loading').ajaxStart(function(){$(this).show();});
	$('#_loading').ajaxStop(function(){$(this).hide();});
	$('#_loading').ajaxSuccess(function(){$(this).hide();});
	$('#_loading').place(o);
	
	$.ajaxSetup({
		error:handleError
	});
}

// Error
function handleError(XMLHttpRequest,textStatus,errorThrown){
	alert('Status: '+textStatus+' | errorThrown:'+errorThrown);
}