 //<![CDATA[

    function load() {
      if (GBrowserIsCompatible()) {
      var map = new GMap2(document.getElementById("map"));

	  map.addControl(new GSmallMapControl());
      map.addControl(new GMapTypeControl());

//   var map = new GMap2(document.getElementById("map"));
		map.addControl(new GLargeMapControl());
		map.addControl(new GMapTypeControl());
//		map.addControl(new GOverviewMapControl());
	    map.setCenter(new GLatLng(43.0055,13.4408), 13,G_NORMAL_MAP);


       function createMarker(point, number) {

 		
          var marker = new GMarker(point);
// Ad ognuno dei punti con le coordinate corrisponde un palloncino con delle info
// qui puoi modificare i nomi delle strutture al posto di Smerillo Albergo Diffuso

		
		  
		  GEvent.addListener(marker, "click", function() {
            marker.openInfoWindowHtml("<div style=\"height:200px;\"><span style=font-size:11px;><a href=\"http://www.nozzedincanto.it\" title=\"Wedding planner Marche\"><img src=\"http://www.nozzedincanto.it/immagini/logo.jpg\" alt=\"Organizzazione matrimoni ed eventi\" style=\"border:0px;width:220px;height:77px;\"></a><br/><b>Le Logge</b> : <br/>Parco della Fessa 1 <a href=\"mailto:info@albergodiffusosmerillo.com\" title=\"invia email albergo diffuso smerillo\">Email</a>  tel: (+39) 334 9946996 <br/><a href=\"/contatti.php\" title=\"contattaci via web\">Contattaci</a></span></div>");
          });


          return marker;
        }


// Modifica qui di seguito le coordinate ;)

  var point1 = new GLatLng(43.0057,13.4451)  




   map.addOverlay(createMarker(point1,1));


    }
    
    // display a warning if the browser was not compatible
    else {
      alert("Sorry, the Google Maps API is not compatible with this browser");
    }

    }

    //]]>

