      google.load('search', '1');

      function init() {
        google.search.CustomSearchControl.attachAutoCompletion(
            '004268137743828971517:rbsbil0ksoi',
            document.getElementById('query-input'),
            'two-page-form');
        inputBlur();
      }

      function submitQuery() {
        window.location = '/sureskills/search_results.html?q='
            + encodeURIComponent(
                document.getElementById('query-input').value);
        return false;
      }

      google.setOnLoadCallback(init);	

	var queryInput = document.getElementById('query-input');


      function inputFocus() {
        document.getElementById('query-input').value = '';
      }

      function inputBlur() {
        document.getElementById('query-input').value = "Search";
      }

      function init() {
        google.search.CustomSearchControl.attachAutoCompletion(
            '004268137743828971517:rbsbil0ksoi',
            document.getElementById('query-input'),
            'two-page-');
        inputBlur();
      }

      function submitQuery() {
        window.location = '/search_results.asp?q='
            + encodeURIComponent(
                document.getElementById('query-input').value);
        return false;
      }
