function init()
{
	google.load("maps", "2");
	
	var map = new google.maps.Map2(document.getElementById('map'));
	var adresse = 'reims 51100';
	var coord = new google.maps.LatLng(4.02783, 49.2542);
	var geocoder = new google.maps.ClientGeocoder();
	var point = new GPoint(4.02783,49.2542 );  // Création du point correspondant aux coordonnées nous intéressant
	var marker = new GMarker(point);  // Création d'un marqueur localisé sur ce point
	
	geocoder.getLatLng(adresse, function (coord) {
		map.setCenter(coord,4);
		map.setMapType(G_NORMAL_MAP);
		map.addControl(new GSmallZoomControl());
		map.addOverlay(marker);  // Et ajout du marqueur à la carte
	}); 

}; // initMap