google.load('search', '1');

      function inputFocus() {
        document.getElementById('query-input').style['background'] = '';
      }

      function inputBlur() {
        var queryInput = document.getElementById('query-input');
        if (!queryInput.value) {
          queryInput.style['background'] =
              'white url(http://www.google.com/coop/online/images/'
              + 'google_custom_search_watermark.gif) no-repeat 0% 50%';
        }
      }

      function init() {
        google.search.CustomSearchControl.attachAutoCompletion(
            '004775855130806469344:oqzao4imc6u',
            document.getElementById('query-input'),
            'two-page-form');
        inputBlur();
      }

      function submitQuery() {
        window.location = '/online/search-results.html?q='
            + encodeURIComponent(
                document.getElementById('query-input').value);
        return false;
      }

      google.setOnLoadCallback(init);
