alexmixaylov,
или так чтоб не мучатся с позиционированием
$(".code").each(function() {
var a = $(this),
b = "#jqvmap1_" + a.attr("code");
a.on({
mouseenter: function() {
$(b).mouseenter();
$(".jqvmap-label").hide()
},
mouseleave: function() {
$(b).mouseleave()
}
})
});