google.load('search', '1');

function inputFocus() {
document.getElementById('query-input').style['background'] = '#fff';
}

function inputBlur() {
var queryInput = document.getElementById('query-input');
if (!queryInput.value) {
  queryInput.style['background'] = '#fff';
}
}

function init() {
google.search.CustomSearchControl.attachAutoCompletion(
    '013567424747230579494:ekfc0k1nvma',
    document.getElementById('query-input'),
    'two-page-form');
inputBlur();
}

function submitQuery() {
window.location = '/SearchResults.aspx?q='
    + encodeURIComponent(
        document.getElementById('query-input').value);
return false;
}

google.setOnLoadCallback(init);
