/* This contains simple javascript behaviour for the site search field. This will clear/restore the default value, and focus the field once the page is loaded */

//Show/hide the default (Enter your search terms) message
function hideDefaultText(field) { if (field.value == field.defaultValue) field.value = ""; }
function showDefaultText(field) { if (field.value == "") field.value = field.defaultValue; }

function focusField(field)
{
	if (document.getElementById)
	{
		searchField = document.getElementById('search_terms');
		if (searchField) searchField.focus();
	}
}
