$(document).ready(function() {

    $('map#Map area').not('area#shop69,area#shop65').each(function() {
        var name = $(this).attr('id');
        var height = $('span#label_' + name).height();
        var position = $(this).attr('coords').split(',');
        x = +position[0] - 50;
        y = +position[1] - 120 - height;
        //$('body').prepend("left: " + x + " top: " + y + ' ');
        $('span#label_' + name).css('left', x).css('top', y);
    });

    $('map#Map area').hover(function() {
        var name = $(this).attr('id');
        $('span#label_' + name).fadeIn('fast');
    }, function() {
        var name = $(this).attr('id');
        $('span#label_' + name).fadeOut('fast');
    });


});
