//populate search box and clear text when focused
function formprep() {
	if (!document.getElementById) return false;
	var som_search_txt = document.getElementById('som_search');	
	som_search_txt.value = 'Search';
	som_search_txt.style.color = '#666';	
	som_search_txt.onfocus = function() {	
		this.value = '';
	}	
}

window.onload = function() {
	formprep();
}