function initialize() {
    var myLatlng = new google.maps.LatLng(48.898551,2.281806);
    var myOptions = {
      zoom: 13,
      center: myLatlng,
      mapTypeId: google.maps.MapTypeId.ROADMAP
    }

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

	var contentString = '<div id="content" style="color:#000">'+
		    '<h2 id="firstHeading" class="firstHeading">HOTEL EVERGREEN</h2>'+
			'<div id="bodyContent">'+
				'<h4>8, Place Georges Pompidou</h4>'+
				'<h4>F-92300 Levallois Perret</h4>'+
				'<p>Paris</p>'
			'</div>'+
	    '</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 CRISTALLO'
    });
	infowindow.open(map,marker);
    google.maps.event.addListener(marker, 'click', function() {
      infowindow.open(map,marker);
    });
  }

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