// Runs when the DOM has been loaded
jQuery(document).ready(function() {
	// Check if map exists
	if(jQuery('#map')) {
		// Loop through each AREA in the imagemap
		jQuery('#map area').each(function() {
	
			// Assigning an action to the mouseover event
			jQuery(this).mouseover(function(e) {
				var country_id = jQuery(this).attr('id').replace('area_', '');
				jQuery('#'+country_id).fadeIn('medium');
			});
			
			// Assigning an action to the mouseout event
			jQuery(this).mouseout(function(e) {
				var country_id = jQuery(this).attr('id').replace('area_', '');
				jQuery('#'+country_id).fadeOut('medium');
			});
			
		
		});
	}
});
