// JavaScript Document
google.load('search', '1', {language : 'en'});		
    
function inputFocus() {
	document.getElementById('query-input').style['background'] = '';
}

function inputBlur() {
	var queryInput = document.getElementById('query-input');
	if (!queryInput.value) {
		queryInput.style['background'] = ''
				/*'white url(http://www.google.com/coop/images/'
				+ 'google_custom_search_watermark.gif) no-repeat 0% 50%';*/
	}
}

function init() {
	google.search.CustomSearchControl(
			'013932175650203472878:urnkt25qjyc',
			document.getElementById('query-input'));
	inputBlur();
}

function submitQuery() {
	window.location = 'http://www.unavco.org/search.html?q='
			+ encodeURIComponent(
					document.getElementById('query-input').value);
	return false;
}

google.setOnLoadCallback(init);
