
      google.load('search', '1');

      function inputFocus() {
        document.getElementById('query-input').style['background'] = 'white';
      }

      function inputBlur() {
        var queryInput = document.getElementById('query-input');
        if (!queryInput.value) {
          queryInput.style['background'] = 'white';
        }
      }

      function init() {
        google.search.CustomSearchControl.attachAutoCompletion(
            '009503311583641828163:qwcnj3sjfgi',
            document.getElementById('query-input'),
            'two-page-form');
        inputBlur();
      }

      function submitQuery() {
	  	
        window.location = '/search/srch_results.cfm?searchTerm='
            + encodeURIComponent(document.getElementById('query-input').value);
        return false;
      }

      google.setOnLoadCallback(init);

