	var map;
	var baseIcon = new GIcon();
	baseIcon.shadow = "http://www.google.com/mapfiles/shadow50.png";
	baseIcon.iconSize = new GSize(20, 34);
	baseIcon.shadowSize = new GSize(37, 34);
	baseIcon.iconAnchor = new GPoint(9, 34);
	baseIcon.infoWindowAnchor = new GPoint(9, 2);
	baseIcon.infoShadowAnchor = new GPoint(18, 25);
	
	var Latitude = new Array (48.64717500, 48.58450800, 48.60392200, 48.63562000, 48.65101000, 48.63948500, 48.65024400, 48.64209600, 48.64894000, 48.409736);					  
	var Longitude = new Array ( -2.00909900, -2.07205900, -1.97681000, -1.98294600, -2.02131500, -2.01320800, -2.02241900, -2.02450700, -2.00817300, -1.748431);
	var Lieu = new Array ('H&ocirc;tel Consulaire', 'A&eacute;roport de Dinard|Pleurtuit|Saint-Malo', 'CCIFA - Centre de Formation et d\'Apprentissage', 'P&eacute;pini&egrave;re d\'entreprises Le Cap', 'Halle d\'expositions Espace Duguay Trouin', 'Cri&eacute;e Port de P&ecirc;che', 'Port de Plaisance Vauban', 'Terminal Ferries', 'Outillage - Port de Commerce', 'Espace Entreprises');

	// Fonction pour créer les marqueurs avec l'évenements onclick
	function createMarker(point, number) 
	{
		var marker = new GMarker(point);
		GEvent.addListener(marker, "click", function() {marker.openInfoWindowHtml(Lieu [number]);});
		return marker;
	} // createMarker (point, number)
	
	// Fonction qui s'exécute au chargement de la page
   	function GLoad() 
	{
		if (GBrowserIsCompatible()) 
		{  			
			map = new GMap2(document.getElementById("map")); // Création de l'objet
			map.addControl(new GLargeMapControl()); // Option zoom et déplacement	
			map.addControl(new GMapTypeControl()); // Changement type carte     
			
			map.setCenter(new GLatLng(48.61199650, -2.01339289), 11);
			for (i = 0; i < Longitude.length; i++) 
			{
				var point = new GLatLng(Latitude [i], Longitude [i]);
				map.addOverlay (createMarker (point, i));
			}
		}
	} // load ()