    function initialize() {
      if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map_canvas"));
		map.setMapType(G_HYBRID_MAP);
        map.setCenter(new GLatLng(43.884531813820914, 10.504989624023438), 12);
		function createMarker(point, description) {
        	var marker = new GMarker(point);
              GEvent.addListener(marker, "click", function() {
                marker.openInfoWindowHtml(description);
              });
              return marker;
            }
		map.addOverlay(createMarker(new GLatLng(43.916072805513515, 10.509967803955078), "<b>Agriturismo Abbacca-l&agrave;</b>,<br />Via di Carpineta, 2061 - Aquilea - Lucca (LU)<br />Tel. +39 0583 578385"));
        map.setUIToDefault();
      }
    }
