if (typeof(AC) == "undefined") { AC = {}; }

AC.SectionBureau = Class.create();
Object.extend(AC.SectionBureau.prototype, AC.Bureau.prototype);
Object.extend(AC.SectionBureau.prototype, {
	currentDrawer: null,
	locked: false,
	addDrawer: 			function(newDrawer){this.drawers.push(newDrawer);Element.addClassName(newDrawer.handle, 'obscured');Element.hide(newDrawer.contentElement);},
	openingDrawer: 		function(drawer){if(this.currentDrawer != null){this.currentDrawer.close();}this.currentDrawer = drawer;}
});
