// JavaScript Document
    //<![CDATA[

    function load() {
      if (GBrowserIsCompatible()) {
			var map = new GMap2(document.getElementById("map7"));
			map.addControl(new GSmallMapControl());
			map.addControl(new GMapTypeControl());
			map.setCenter(new GLatLng(43.616438497229694,13.508403897285461), 13);
			map.openInfoWindowHtml(map.getCenter(),"<b>Alessandro Archibugi & Figlio SRL</b><br/>57, Via E. Cialdini<br/>I-60122 Ancona <br>Tel +39 071 501011  ");

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

      }
    }

    //]]>