	//<![CDATA[
      google.load('search', '1.0', {"language" : "en"});
         
    function OnLoad() {
      // Dynamically load CSS to override defaults
      var css = document.createElement('link');
      css.href = '../css/master.css';
      css.type = 'text/css';
      css.rel = 'stylesheet';
      document.getElementsByTagName('head')[0].appendChild(css);
      
      // Create a search control
      var searchControl = new google.search.SearchControl();
      searchControl.setLinkTarget(GSearch.LINK_TARGET_SELF);

      // site restricted web search with custom label
      // and class suffix
      var siteSearch = new google.search.WebSearch();
      siteSearch.setUserDefinedLabel("Results");
      siteSearch.setUserDefinedClassSuffix("siteSearch");
      siteSearch.setSiteRestriction("wineartbc.com");
      // web search, open
      var options = new google.search.SearcherOptions();
      options.setExpandMode(google.search.SearchControl.EXPAND_MODE_OPEN);
      searchControl.addSearcher(siteSearch, options);

      // create a draw options object so that we
      // can position the search form root
      var options = new google.search.DrawOptions();
      options.setSearchFormRoot(document.getElementById("searchForm"));

      // tell the searcher to draw itself and tell it where to attach
      searchControl.draw(document.getElementById("searchResults"), options);

    }

    function DummyClipSearchResult(result) {}

    google.setOnLoadCallback(OnLoad, true);
    //]]>
