// JavaScript Document
 //<![CDATA[

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

// Our info window content
var infoTabs = [
  new GInfoWindowTab("Location", "<img src=images/minilogo.jpg width=98 height=23 /><br /><img src=images/storefront.jpg  width=98 height=73 /><p>12333 W. Pico Blvd.<br />Los Angeles, CA 90064<br />3 blks west of Bundy Dr.<br /></p>"),
  new GInfoWindowTab("Hours", "Mon - Fri: 8:00 am to 6:00 pm<br />Sat: 8:00 am to 4:00 pm<br />Sun and Holidays: 10:00 am to 1:00 pm<br /> ")
];

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

    //]]>