$(document).ready(function() {
    $('img[usemap=#regions]').maphilight({'fill':true,'fillColor':'333333','fillOpacity':1,'stroke':true,'strokeColor':'000000','strokeOpacity':1,'strokeWidth':2});
    $('a').each(function() {
        var a = this;
        var href = $(a).attr('href');
        $('map[name=regions] area[href='+href+']').each(function() {
            var area = this;
            $(area).mouseover(function() {
                if ($(this).attr('c') != '1') {
                    $('map[name=regions] area[href='+href+']').attr('c', '1').trigger('mouseover').attr('c', '0');
                }
                $(a).addClass('selected').css({'color':'red'});
            }).mouseout(function() {
                if ($(this).attr('c') != '1') {
                    $('map[name=regions] area[href='+href+']').attr('c', '1').trigger('mouseout').attr('c', '0');
                }
                $(a).removeClass('selected').css({'color':''});
            });
            $(a).mouseover(function() {
                $(area).trigger('mouseover');
            }).mouseout(function() {
                $(area).trigger('mouseout');
            });
        });
    });
});


