function DropDownLink(a){this.dlEl=$(a)}DropDownLink.prototype.toString=function(){return"Drop Down Link id is "+this.dlEl.id};DropDownLink.prototype.registerDTClick=function(){$(this.dlEl).find("dd").hide().end().find("dt").click(function(a){a.preventDefault();$(this).next().slideToggle()})};
