$(document).ready(function() {
		
		$('#colonneCentre').mouseenter(
		
		function(){
		
		$('#localisation2 area').mouseover(
		
		function(){
			var nom = $(this).attr('class');
			var coords = $(this).attr('coords').split(',');
			var x = coords[0]; var y = coords[1];
			$('#cville').html(nom); $('#cville').show();
			$('#cville').css({'left':parseInt(x),'top': parseInt(y)+55});
		}
		
		);
		
		}
		
		);
		
		$('#colonneCentre').mouseleave( function(){
		$('#cville').hide();
		} );
		
	});
