If you want to move it to the top or bottom would be easier, though this would not help you :(
//lets say you want to avoid/skip table headers and use a tbody
var tbody = $('tbody','#table');
//now you want a specific row bring to top
$('tr.chieftan',tbody).prependTo(tbody);
To move from a specific index, to a specific one :
$('li:eq(2)').insertBefore($('li:eq(1)'));
Will move the 3rd child before the 2nd (the indexs are 0 based).