$(function () {
var numberStr='7852906431'
$('.canvas-conatiner.canvas').hover(function () {
if ($.trim($(this).find('.showPhone').text()) != '') {
var nodeObj = $(this).find('.showPhone.t');
var tel = nodeObj.text();
if (tel.length > 6) {
var lTel=tel.substr(0,4),cTel=tel.substr(4,3),rTel=tel.substr(7);
tel=lTel;
for (var i = 0; i < cTel.length; i++) {
tel+= numberStr.indexOf(cTel[i]).toString();
}
tel+=rTel;
nodeObj.text(tel);
nodeObj.removeClass('t');
}
$(this).find('.showPhone').show();
}
}, function () {
$(this).find('.showPhone').hide();
});
})