jQuery.noConflict(); // fix '$'
jQuery(document).ready(
function($) {
$(function(){
// для каждой таблицы
$('table tbody').each(function() {
var $table = $(this);
// исключая первую строчку для каждой последующей добавляется number
$('tr:not(:first) td:first-child', $table).each(function (number) {
$(this).html(number+1);
});
});
$(this).show();
});
}
);