function initialize() {
    var myLatlng = new google.maps.LatLng(48.875018,2.30494);
    var myOptions = {
      zoom: 16,
      center: myLatlng,
      mapTypeId: google.maps.MapTypeId.ROADMAP
    }

    var map = new google.maps.Map(document.getElementById("map_canvas"), myOptions);

	
	var contentString = 
	    '<div id="firstHeading" class="firstHeading">Hotel Royal Garden</div>'+
	    '<div id="bodyContent">'+
	    '218, 220, rue du Faubourg Saint-Honore<br>75008 Paris<br>France'+
	    '</div>';
	       
    var infowindow = new google.maps.InfoWindow({
        content: contentString,
		maxWidth: 300,
		maxHeight: 300

    });

    var marker = new google.maps.Marker({
        position: myLatlng,
        map: map,
        title: 'HOTEL DROYAL GARDEN'
    });
	infowindow.open(map,marker);
    google.maps.event.addListener(marker, 'click', function() {
      infowindow.open(map,marker);
    });
  }

$(function(){
	initialize();
});
