/*
	Copyright (c) 2008 Perceptual Media Works (www.PerceptualMediaWorks.com)
*/
function Drawer(_a,_b,_c){var _d=this;var _e=getElm(_a);_d._f=_a;_d.onFinished=(_c?_c:null);_d._g=document.createElement('div');_d._g.id=_d._f+'Drawer';_d._g.className='drawer';_d._g.style.overflow='hidden';_d._g.style.position='relative';_d._g.style.visibility='hidden';_d._g.open=bind(_d,'open');_d._g.close=bind(_d,'close');_e.parentNode.replaceChild(_d._g,_e);_d._h=_e;_d._i=_d._h.style;_d._i.position='absolute';_d._g.appendChild(_d._h);_d._g.style.height=_d._h.offsetHeight+'px';_d._g.style.width=_d._h.offsetWidth+'px';var _j;if((_b=='t')||(_b=='b')){_d._k='top';_j=_d._h.offsetHeight;}else{_d._k='left';_j=_d._h.offsetWidth;}if((_b=='t')||(_b=='l')){_j= -(_j);}_d._l=0;_d._m=_j;_d._n=new Animator(_d._l,_d._m,_j);_d._n.owner=_d;_d.animate=function(){_d._n.animate();};_d._h.style[_d._k]=_d._m+'px';return(_d._g);}Drawer.SLIDE_IN=true;Drawer.SLIDE_OUT=false;Drawer.prototype.update=function(_o){this._h.style[this._k]=_o+'px';};Drawer.prototype.open=function(_p){this._g.style.visibility='visible';this.slide(Drawer.SLIDE_OUT,_p);};Drawer.prototype.close=function(_p){this.slide(Drawer.SLIDE_IN,_p);};Drawer.prototype.slide=function(_q,_p){this._n.start(_q,_p);};