jQuery(document).ready(function() {

    jQuery('area')
		.live('mouseover',function(e) {
			var clicked = e.target;
			var country = jQuery(clicked).attr('class');
			country_mouseover(country);
		})
		.live('mouseout',function(e) {
			var clicked = e.target;
			var country = jQuery(clicked).attr('class');
			country_mouseout(country);
		});

});


function country_mouseover(country) {
	jQuery('#'+country+'_hover').fadeIn('fast');
	country = country.replace('_',' ');
}

function country_mouseout(country) {
	jQuery('#'+country+'_hover').fadeOut('slow');
	country = country.replace('_',' ');
}


