      google.load('search', '1');

      function init() {
        window.customSearchControl = new google.search.CustomSearchControl(
                '002072243204242784090:nwvdh8l5uqu',
                document.getElementById('search_input'),
                'search_form'
        );
      }

      function submitQuery() {
        window.location = 'http://maneycommunications.com/search.html?q='
            + encodeURIComponent(
                document.getElementById('search_input').value);
        return false;
      }

      google.setOnLoadCallback(init);

