
initSearchHighlight =  {

	searchDefaultVal: 'Search the site',
	
	init: function() {
		var searchBox = document.getElementById('search_query');
		
		if (typeof searchBox != 'undefined') {
			searchBox.onfocus= function() { 
				if (this.value == initSearchHighlight.searchDefaultVal) {
					this.value = '';
				}
			}
		}
	}
}



addLoadEvent(initSearchHighlight.init);