В общем создал скрипт, который подгружает элемент по нажатию с той же самой страницы, сделал следующим образом, но при загрузке ссылки перестают быть ссылками.
$('document').ready(function(){
$('.nav').each(function(){$(this).append('<img class="imag" src="'+location.href+'/refresh.gif" style="border: none;cursor:pointer">')});
$('img.imag').click(function(){
var num=$('img.imag').index(this);
var n=num-1;
$(this).parent().next().html("Reloading...").load(location.href+" td."+$(this).parent().next().attr('class')+":eq("+n+") >*")
});
});
Хелп.