			$(document).ready(
				function (){
					$(".tablesorter")
						/*
						 * td.collapsible = collapse to the first table row and show +/-
						 * td.collapsible_alt = anchor to order number
						 */
						.collapsible("td.collapsible", {
							collapse: true
						})
						.tablesorter({
						// set default sort column
						sortList: [[1,0]],
						// don't sort by first column
						headers: {0: {sorter: false}}
						// set the widgets being used - zebra stripping
						, widgets: ['zebra']
						, onRenderHeader: function (){
							this.wrapInner("<span></span>");
						}
						, debug: false
					})
					.tablesorterPager({container: $("#pager"), positionFixed: false})
						;
				}
			);
