$(function() {
	$('table.sortable tr:odd').addClass('odd');
	
	$('table.sortable').tablesorter({
		headers: {1:{sorter:false}, 3:{sorter:false}}
	}).bind('sortEnd', function() {
		$(this).find('tr').removeClass('odd');
		$(this).find('tr:odd').addClass('odd');
	});
	
});