$(document).ready(function () {
    $("[id^=tauluCell]").hover(
    	function() {
    		var hoverStr = $("#" + $(this).attr('id').replace('Cell', 'Info')).text();
    		$(this).append($("<span class='hoverbox'>" + hoverStr + "</span>"));
    	},
    	function(){
    		$(this).find("span:last").remove();
    	}
    );
});

