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