jQuery('area').each(function() {
    jQuery('area').removeAttr('title').removeAttr('alt');
    
    jQuery(this).mouseover(function(){
            var areaId = jQuery(this)[0].id;
            jQuery('.'+areaId).show();
        }).mouseout(function() {
            var areaId = jQuery(this)[0].id;
            jQuery('.'+areaId).hide();
        });
});