// JavaScript Document




function initialize() {
      if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("main1"));
        map.setCenter(new GLatLng(37.4419, -122.1419), 13);
		window.setTimeout(function() {
  map.panTo(new GLatLng(37.4569, -122.1569));
}, 5000);
      }
    }

