// JavaScript Document

    function LoadMapSearchControl() {
	  // Create an array of hotspots. Each entry contains and html element
	  // from your page, and the query to execute when that element is clicked
	  var hotspotsList = [

	  ];

		var ci = new GIcon();
		ci.image = "http://labs.google.com/ridefinder/images/mm_20_yellow.png";      
		var options = {
            zoomControl : GSmapSearchControl.ZOOM_CONTROL_ENABLE_ALL,
            title : "Vacation Time",
            url : "http://www.vthhi.com",
			idleMapZoom : GSmapSearchControl.ACTIVE_MAP_ZOOM,
            activeMapZoom : GSmapSearchControl.ACTIVE_MAP_ZOOM,
			drivingDirections : GSmapSearchControl.DRIVING_DIRECTIONS_FROM_USER,
			mapTypeControl : GSmapSearchControl.MAP_TYPE_ENABLE_ALL,
			hotspots : hotspotsList
            }

      new GSmapSearchControl(
            document.getElementById("mapsearch"),
            "3 LeMoyne Ave, Hilton Head Island, SC",
            options
            );
    }
    // arrange for this function to be called during body.onload
    // event processing
    GSearch.setOnLoadCallback(LoadMapSearchControl);