var busyIndicator = {
	show: function(){
		$('busy_indicator').show();
	},
	hide: function(target){
		$('busy_indicator').hide();
	},
	toggle: function(target){
		$('busy_indicator').toggle();
	}	
};

