
//---------------------------------------------------------------------------------------------
// Used by Google Search fields
// see (demo site): http://googleajaxsearchapi.blogspot.com/2010/03/search-form-and-results-on-two.html
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%';
	}
}

// Invoke on page load
$(inputBlur);

//---------------------------------------------------------------------------------------------
