// Google Maps
	
	      function initialize() {
        if (GBrowserIsCompatible()) {
        
          // Create and Center a Map
          var map = new GMap2(document.getElementById("map"));
          map.setCenter(new GLatLng(40.235975517227, -76.33220314979553), 13);
          map.addControl(new GLargeMapControl());
          map.addControl(new GMapTypeControl());
		  map.addOverlay(new GMarker(new GLatLng(40.235975517227, -76.33220314979553))); 

          // bind a search control to the map, suppress result list
          map.addControl(new google.maps.LocalSearch(), new GControlPosition(G_ANCHOR_BOTTOM_RIGHT, new GSize(10,20)));

        }
      }
      GSearch.setOnLoadCallback(initialize);