
    //<![CDATA[

    function load() {
      if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map"));
        map.setCenter(new GLatLng(30.511474,-87.272129), 13);
		 var map = new GMap2(document.getElementById("map"));
map.addControl(new GSmallMapControl());
map.addControl(new GMapTypeControl());
map.setCenter(new GLatLng(30.511474,-87.272129), 13);
map.setMapType(G_HYBRID_MAP);

// Our tab info window content
var infoTabs = [
  new GInfoWindowTab("Tab #1", "<table><tr><td><img src=http://fleetco-specialty.com/wp-content/themes/fleetco_custom/images/logo.png width=100 ></td><td width=10></td><td>685 Broad Street<br>Pensacola, Florida 32534<br>Toll Free: 800.335.3287</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);
      }
    }

    //]]>  	
	
	
	
	
