jQuery(document).ready(function() {
	jQuery("#loading").bind("ajaxSend", function(){
   		$(this).show();
 	}).bind("ajaxComplete", function(){
   		$(this).hide();
 	});	
});
