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