$(document).ready(function() {
	$("#floorplans").tableSorter({
		sortColumn: 'name',			// Integer or String of the name of the column to sort by.
		sortClassAsc:  'headerSortUp',		// Class name for ascending sorting action to header
		sortClassDesc: 'headerSortDown',	// Class name for descending sorting action to header
		headerClass: 'header',			// Class name for headers (th's)
		stripingRowClass: ['even','odd'],	// Class names for striping supplyed as a array.
		stripeRowsOnStartUp: true		// Strip rows on tableSorter init.
	});
});


