BLIP.Class.create("BLIP.Unit.ScrollingAjaxList.HomeDirectoryList", BLIP.Unit.ScrollingAjaxList,
	function(config) {
		BLIP.Unit.ScrollingAjaxList.call(this,config);
	},
	{
		selector : ".ShowListSurround",

		responseContentSelector : ".ShowList",

		getListUrl : function() {
			return this.domRoot.attr("data-uri");
		},

		buildListUrl : function(page) {
			var url = this.getListUrl(),
					delim = url.indexOf("?") >= 0 ? "&" : "?";

			return url + delim + "page="+ page + "&no_wrap=1";
		}

	}
);

