
$(document).ready(function(){
	
	$("#listpage td .link").hover(
      function () {
		var offset = $(this).children('a').width() + 3;
		$(this).children("span.linkHelper").css({left: offset, display: "block"});
      }, 
      function () {
        $(this).children("span.linkHelper").css({display: "none"});
      }
    );					   
						   
});
