// LIST
var ListManager = new Class({
  setup:function() {
	$$("a.ExpandDescription").each(function(expand) { 
	  expand.addEvent("click", function (e) { new ListManager().expandDescription(expand); });
	});
  },
  expandDescription:function(expand) {
    container = expand.getParent("span");
	container.addClass("Hidden");
	container.getNext("span").removeClass("Hidden");
  }
});
window.addEvent("domready", function(e) { new ListManager().setup(); });