$(document).ready(function(){

			$("#carregando").hide();
			$.listen('click','.ajl',function(){
				$("#carregando").ajaxStart(function(){
					$(this).show();
				});
				$("#carregando").ajaxStop(function(){		
					$(this).hide();
					$(".central").show();
				});
				$.get(this.href,{conteudo: "ok", currentPagez: this.href}, function(data) {
						$(".central").empty().html(data);
					});
				return false;
			});
		});	