function affichePlan(){
	
	//Coordonnées du centre de la carte
	var myCenter = new google.maps.LatLng(48.861288,2.333994);
	
	//Coordonnées du point à placer
	var myLatlng = new google.maps.LatLng(48.888536,2.346783);
	var myLatlng2 = new google.maps.LatLng(48.866288,2.332944);
	
	//Options de la carte
	var myOptions = {
		//le niveau de zoom (de 1 à 19)
		zoom: 12,
		//assignation du centre
		center: myCenter,
		//type de carte. ROADMAP : plan / SATELLITE : satellite / HYBRID : plan+satellite / TERRAIN : relief physique
	 	mapTypeId: google.maps.MapTypeId.ROADMAP,
	
	 	size: new google.maps.Size(475,445)
	};
		
	//spécification de la puce à utiliser. Par défaut, la puce Google Map classique		
	var puce = 'puce.png';
	
	//déclaration de l'info bulle
	var infowindow = new google.maps.InfoWindow();
	
	//placement de la carte, ici dans le div ayant l'id "carte"	
	//attention, le div "carte" doit être sizé en hauteur, sinon on ne voit pas la carte
	var map = new google.maps.Map(document.getElementById('carte'),myOptions);
	
	//préparation de l'info-bulle : code html classique avec style inline
	var contentString_1 = '<div class="infos_bulle" style="width:220px;height:100px;padding-top:10px;padding-left:15px;padding-bottom:15px;padding-right:15px;color:#000;font-size:11px;"><h3 style="color:#000;font-size:26px;font-weight:normal;font-family:DINCondMediumRegular;padding-left:0;padding-bottom:3px;margin-top:0;margin-bottom:0px;padding-bottom:0px;">Welcome To Mupp</h3>'+
		    
	'<img align="left" style="margin-right:20px;margin-top:15px;" src="bird.png" alt="">'+
		    
	'<p style="margin-top:5px;font-family:arial;font-size:11px;line-height:18px;padding-bottom:5px;">23 rue Ramey<br />75018 Paris<br />T +33 (0) 1 53 41 63 77</p>'+
	   
	'</div><div class="clear"> </div>';

	//préparation de l'info-bulle : code html classique avec style inline
	var contentString_2 = '<div class="infos_bulle" style="width:220px;height:100px;padding-top:10px;padding-left:15px;padding-bottom:15px;padding-right:15px;color:#000;font-size:11px;"><h3 style="color:#000;font-size:26px;font-weight:normal;font-family:DINCondMediumRegular;padding-left:0;padding-bottom:3px;margin-top:0;margin-bottom:0px;padding-bottom:0px;">Welcome To Mupp</h3>'+
		    
	'<img align="left" style="margin-right:20px;margin-top:15px;" src="bird.png" alt="">'+
		    
	'<p style="margin-top:10px;font-family:arial;font-size:11px;line-height:18px;padding-bottom:5px;">30 rue Saint Roch<br />75001 Paris<br />T +33 (0) 1 42 96 90 43</p>'+
	   
	'</div><div class="clear"> </div>';
		
	//Positionnement du marqueur	
	var marker_1 = new google.maps.Marker({
		position: myLatlng,
		map: map,
		icon: puce
	});
		
	var marker_2 = new google.maps.Marker({
		position: myLatlng2,
		map: map,
		icon: puce
	});	
	
	
	
	//au clic sur le marqueur : remplissage et affichage de l'info-bulle
	google.maps.event.addListener(marker_1, 'click', function() {
		infowindow.setContent(contentString_1);
		infowindow.open(map,marker_1);
	});
	google.maps.event.addListener(marker_2, 'click', function() {
		infowindow.setContent(contentString_2);
		infowindow.open(map,marker_2);
	});
}




// $(window).load(
// function(){
// 	affichePlan();
// });
