
    //<![CDATA[

    function load() {
      if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map"));
        map.setCenter(new GLatLng(30.43121,-87.213249), 8);
		 var map = new GMap2(document.getElementById("map"));
map.addControl(new GSmallMapControl());
map.addControl(new GMapTypeControl());
map.setCenter(new GLatLng(30.43121,-87.213249), 8);
map.setMapType(G_HYBRID_MAP); /*This line adds the Hybrid map default control*/

// Our tab info window content
var infoTabs = [
  new GInfoWindowTab("Tab #1", "<table><tr><td><img src=images/icon_gmap_p.png width=115 height=52></td><td>Pensacola, FL 32501</td></tr></table>")
];

// 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);
marker.openInfoWindowTabsHtml(infoTabs);
      }
    }

    //]]>
 

