google.load('search', '1');

function inputFocus() {
    document.getElementById('query-input').style['background'] = '';
}

function submitQuery() {
    window.location = '/news/search/results.html?q='
    + encodeURIComponent(
        document.getElementById('query-input').value);
    return false;
}
