(function(){
	function click(enabled, ascending){
		this.className = "sortable " + (enabled ? "sorted-" + (ascending ? "up" : "down") : "");
	}
	var o = (o = document.getElementById("list"), o && tableSort(o, click));
})();