    function load() 
    {
      if (GBrowserIsCompatible()) 
      {
        // Create our "tiny" marker icon
        var icon = new GIcon();
        icon.image = "images/coffeecup.png";
        icon.shadow = "http://labs.google.com/ridefinder/images/mm_20_shadow.png";
        icon.iconSize = new GSize(33, 27);
        icon.shadowSize = new GSize(33, 27);
        icon.iconAnchor = new GPoint(11, 27);
        icon.infoWindowAnchor = new GPoint(15, 5);

        var map = new GMap2(document.getElementById("map"));
        map.addControl(new GMapTypeControl());
        map.addControl(new GLargeMapControl());
        map.setCenter(new GLatLng(38.74158, -121.22568), 13);
        var marker = new GMarker(map.getCenter(), {icon: icon, title: 'Jericho Coffee'}); 
        GEvent.addListener(marker, "click", function(){ showInfo(marker); }); 
        map.addOverlay(marker);
        showInfo(marker);
        //toggleMap();
      }
    }

    function showInfo(marker)
    {
        marker.openInfoWindowHtml("<span class=\"jcBrandName\">Jericho Coffee</span><br/><div style=\"font-size: 0.75em\">8711 Sierra College Blvd, Suite #1<br/>Roseville, CA 95661<br/>(916) 771-5726</div>");
    }

    function toggleMap()
    {
        var map = document.getElementById('map');
        if(map.style.display == 'none')
        {  
            map.style.display = ''; 
        }
        else
        {  
            map.style.display = 'none'; 
        }
    }

