$(document).ready(function() {
	$('.map').hover(
		function() {
			if($(this).attr('id')!='') {	
				$('.map'+$(this).attr('id')).css('fontWeight', 'bold');
			}
			$(this).css('fontWeight', 'bold');
		},
		function() {
			if($(this).attr('id')!='') {	
				$('.map'+$(this).attr('id')).css('fontWeight', 'normal');
			}
			$(this).css('fontWeight', 'normal');
		}
	);
	
});
