jQuery(document).ready(function($){
var i = 0;
jQuery('#pingNtb').click(function()
{
i++;
jQuery('#commentlist4tb').toggle();
if(i%2 != 0)
this.innerHTML = "hide";
else
this.innerHTML = "show";
});
});