$(document).ready(function() {

			/*
			 * сортируем таблицы
			 */
	
			$('table.rait tr td:last-child a[href$=responses]').each(function(){
				var tc = $(this).clone().css('display', 'none');
				$(this).parent('td').prepend(tc);
			});
			$("table.sortable").tablesorter();
		});
