function initialize() {
		var latlng = new google.maps.LatLng(48.8741690, 2.3987000);

		var myOptions = {
		  zoom: 16,
		  center: latlng,
		  mapTypeId: google.maps.MapTypeId.ROADMAP
		}
	
		var map = new google.maps.Map(document.getElementById("map"), myOptions);
		
		var optionsMarqueur = {
          position: latlng,
          map: map,
		  icon: "http://www.telegraphe.fr/wp-content/themes/twentyten-telegraphe/images/icon_gmaps.png",
          title: "Ing Direct Café"
		}
		
		var marqueur = new google.maps.Marker(optionsMarqueur);
	
		var contentString = '<div>'+
							'<h1 style="font-family:Arial; margin:0; font-size:13px;font-weight:500;"><span style="font-weight:700;">&Eacute;</span>glise <span style="font-weight:700;">P</span>rotestante <span style="font-weight:700;">&Eacute;</span>vang&eacute;lique<br /> de <span style="font-weight:700;">T</span>&eacute;l&eacute;graphe</h1>'+
							'<div style="float:left;">'+
							'<p style="font-family:Arial; margin:5px 0 0 0; font-size:11px;">7 passage du Télégraphe<br />'+
							'75020 PARIS<br />'+
							'01 57 22 54 01</p>'+				
							'</div>'+
							'<img style="float:right;" src="http://www.telegraphe.fr/wp-content/themes/twentyten-telegraphe/images/photo_gmaps.jpg"/>'+
							'</div>';
		
		var infowindow = new google.maps.InfoWindow({content: contentString});
		google.maps.event.addListener(marqueur, 'click', function() { 
		infowindow.open(map,marqueur); 
		});
		infowindow.open(map,marqueur);
		
}
initialize();
