
Ajax.Responders.register({
	onCreate: function() {
		if($('notification') && Ajax.activeRequestCount > 0)
$('notification').show();
	},
	onComplete: function() {
		if($('notification') && Ajax.activeRequestCount == 0)
$('notification').hide();
	}
});

