      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 no-repeat 0% 50%';
        }
      }
 
      function init() {
        google.search.CustomSearchControl.attachAutoCompletion(
            '015797192410767641343:x9w1ijufbgs',
            document.getElementById('query-input'),
            'two-page-form');
        inputBlur();
      }
 
      function submitQuery() {
        window.location = 'http://blog.kingofcopy.com/search-results/?q='
            + encodeURIComponent(
                document.getElementById('query-input').value);
        return false;
      }
 
      google.setOnLoadCallback(init);

