
$(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"});
      }
    );


	//for IE z-index bug fix
	var zi = 199999;
	$(".listpage td span.link").each(function(i) {
		$(this).css("z-index", zi--);
	});


});