// JavaScript Document

function initialize() {
      if (GBrowserIsCompatible()) {
        var map = new GMap2(document.getElementById("map_canvas"));
        map.setCenter(new GLatLng(45.37579011, -122.32670090), 12);
		map.openInfoWindow(map.getCenter(), document.createTextNode("Big Valley Woods"));
        map.setUIToDefault();
      }
    }

