	function LoadMapSearchControl() {
		
		var options = {
			zoomControl : GSmapSearchControl.ZOOM_CONTROL_ENABLE_ALL,
			title : "The Diamondhead Community",
			url : "http://www.seediamondhead.com",
			idleMapZoom : GSmapSearchControl.ACTIVE_MAP_ZOOM,
			activeMapZoom : GSmapSearchControl.ACTIVE_MAP_ZOOM,
			onBootComplete : function() { 
			   this.onCenterClick();
			   this.onIdleCenterClick();
            }
		}

		new GSmapSearchControl(
			document.getElementById("mapsearch"),
			"Diamondhead, Hot Springs, AR",
			options
		);

	}
	// arrange for this function to be called during body.onload
	// event processing
	GSearch.setOnLoadCallback(LoadMapSearchControl);