// jQuery attachments.

$(document).ready(function() { 

	// Really awkward hack to disable sorting (we want only striping at the moment).
	$("table thead th").addClass("{sorter: false}");

	// Enable striping.
	$(".striped").tablesorter({
		widgets: ['zebra']
	}); 
});

