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

function inputFocus() {
document.getElementById('query-input').style['background'] = '';
}

function inputBlur() {
var queryInput = document.getElementById('query-input');
}

function init() {
google.search.CustomSearchControl.attachAutoCompletion(
    '009718489210535956922:ewc0hofjr84',
    document.getElementById('query-input'),
    'two-page-form');
inputBlur();
}

function submitQuery() {
window.location = '/search.aspx?q='
    + encodeURIComponent(
        document.getElementById('query-input').value);
return false;
}

google.setOnLoadCallback(init);
