BAUER.namespace("BAUER.ui.global");BAUER.ui.global.WaitingIndicator={CLASSES:{none:"none"},IDS:{node:"xhr-waiting-indicator"},container:null,_findElements:function(){this.container=$(this.IDS.node);this.container.setStyle("opacity",0);},hide:function(){if(!this.container){this._findElements();}this.container.setStyle("left","-100%");
this.container.setStyle("opacity",0);},show:function(){if(!this.container){this._findElements();}this.container.setStyle("left","0");this.container.fade("in");}};window.addEvent("showwaiting",function(){BAUER.ui.global.WaitingIndicator.show();});window.addEvent("hidewaiting",function(){BAUER.ui.global.WaitingIndicator.hide();
});