/* 
 * www.starlight.ie specific javascript
 *
 */
 
var search_field_active = false;

/*
 * Clear the contents of the search box (only if it hasn't
 * been cleared already)
 */

function clearSearchField()
{
	var searchField = document.getElementById('SearchQuery');
	
	if(!search_field_active) {
		search_field_active = true;
		searchField.value = '';
	}
	
	return true;
}

/*
 * Clear the contents of the search box (only if it hasn't
 * been cleared already)
 */

function highlightSearch()
{
	var searchForm = document.getElementById('search_box');
	
	searchForm.className = 'highlight';
		
	return true;
}

