

var ListedTree = Class.create();

Object.extend(Object.extend(ListedTree.prototype, Listed.prototype),
	{
		initialize: function(container_id, options){
			if(!options)
			{
				options = {};
			}
			options.itemTagname = 'li';
			this.__construct(container_id, options);
		}
	}
);