$(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;
        $('map[name=regions] area[href='+$(a).attr('href')+']').each(function() {
            var area = this;
            $(area).mouseover(function() {
                $(a).addClass('selected').css({'color':'red'});
            }).mouseout(function() {
                $(a).removeClass('selected').css({'color':''});
            });
            $(a).bind('mouseover', function() {
                $(area).trigger('mouseover');
            }).bind('mouseout', function() {
                $(area).trigger('mouseout');
            });
        });
    });
});


