jQuery.noConflict();

jQuery(document).ready(
	function($)
	{
		
		$(".city").hover(
				function() {
					element = $(this).attr('id');
					id = element.substring(5);
					$(this).addClass('bold');
					$('#point'+id).addClass('redPoint');
					$('#point'+id).parent().css('z-index', '10');
				},
				function() {
					$(this).removeClass('bold');
					$('#point'+id).removeClass('redPoint');
					$('#point'+id).parent().css('z-index', '0');
				}
		);
		
		$(".point").hover(
				
				function() {
					element = $(this).attr('id');
					id = element.substring(5);
					$(this).addClass('redPoint');
					$('#city_'+id).addClass('bold');
				},
				function() {
					$(this).removeClass('redPoint');
					$('#city_'+id).removeClass('bold');
				}
		);
		
	}
);
