$(document).ready(function() {
	$(".view_map").mouseover(function(){
		var map_id = $(this).attr('id');
		$("#map img").hide();
		$("#map " + map_id).show();		
	}).mouseout(function(){
		$("#map img").hide();
		$("#map #ph_carte").show();		
	});
});