 
    //<![CDATA[

    function load() {
      if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map"));
       map.setCenter(new GLatLng(41.893461,12.503128), 15);
		map.addControl(new GMapTypeControl());
map.addControl(new GSmallMapControl());



// Our info window content
        var infoTabs2 = [
          new GInfoWindowTab("Tab #1", "Little Italy B&B <br />Via Ferruccio 30 Int. 27<br />00185 Roma<br />Tel. +39 348 8037941")
        ];

        // Place a marker in the center of the map and open the info window
        // automatically
        var marker2 = new GMarker(new GLatLng(41.893461,12.503128));
        GEvent.addListener(marker2, "click", function() {marker2.openInfoWindowTabsHtml(infoTabs2);});
        map.addOverlay(marker2);
       marker2.openInfoWindowTabsHtml(infoTabs2);		



// Our info window content
        var infoTabs1 = [
          new GInfoWindowTab("Tab #1", "Chaplin Hostel<br />Via del Castro Pretorio 28 Int. 12a<br />00185 Roma<br />Tel. +39 348 8037941")
        ];

        // Place a marker in the center of the map and open the info window
        // automatically
        var marker = new GMarker(new GLatLng(41.901765978963454,12.50593900680542));
        GEvent.addListener(marker, "click", function() {marker.openInfoWindowTabsHtml(infoTabs1);});
        
        map.addOverlay(marker);
        
        
        
      }
    }

    //]]>
    