// JavaScript Document
 //<![CDATA[

    function load() {
      if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map"));
map.addControl(new GSmallMapControl());
map.setCenter(new GLatLng(34.003254, -118.484616), 13);

// Our info window content
var infoTabs = [
  new GInfoWindowTab("Location", "<img src=images/storefront.jpg  width=98 height=73 /><img src=images/tinylogo.jpg width=98 height=73 /><br />2510 Main Street<br />Suite D<br />Santa Monica, CA 90405"),
];

// 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);
      }
    }

    //]]>
