	function LoadMapSearchControl() {
		
		var options = {
			zoomControl : GSmapSearchControl.ZOOM_CONTROL_ENABLE_ALL,
			title : "AR House of Representatives",
			url : "http://www.arkansashouse.org",
			idleMapZoom : GSmapSearchControl.ACTIVE_MAP_ZOOM,
			activeMapZoom : GSmapSearchControl.ACTIVE_MAP_ZOOM,
			onBootComplete : function() { 
			   this.onCenterClick();
			   this.onIdleCenterClick();
            }
		}

		new GSmapSearchControl(
			document.getElementById("mapsearch"),
			"500 Woodlane Drive, Little Rock, AR 72201",
			options
		);

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