var myGlobalHandlers = {
		onCreate: function(){
			Element.show('pl1');
		},

		onComplete: function() {
			if(Ajax.activeRequestCount == 0){
				Effect.Fade('pl1');
			}
		}
	};

Ajax.Responders.register(myGlobalHandlers);



