Meetup.DomDeco.DropDown=function(){};Meetup.DomDeco.DropDown.prototype={decorate:function(b){var a=getFirstElementByTagAndClassName;this._triggerEl=a(null,"dropDown_trigger",b);this._triggerEl.style.display="block";this._hiddenEl=removeElement(a(null,"dropDown_hidden",b));document.body.appendChild(this._hiddenEl);this._hide();this._hiddenEl.style.position="absolute";this._hiddenEl.className+=" dropDown_hidden_active";this._position();connect(window,"onresize",this._position);connect(this._triggerEl,"onclick",this._show);connect(document.body,"onclick",this._hide);connect(this._hiddenEl,"onclick",this._stop)},_triggerEl:null,_hiddenEl:null,_position:function(){var a=elementPosition(this._triggerEl);this._hiddenEl.style.top=a.y+"px";this._hiddenEl.style.left=a.x+"px"},_stop:function(a){a.stopPropagation()},_show:function(a){a.stop();this._hiddenEl.style.display="block";Meetup.LocPicker.__init__()},_hide:function(){this._hiddenEl.style.display="none"}};Meetup.DomDeco.applyByTagAndClass("DIV","dropDown",Meetup.DomDeco.DropDown);