// see if default text exists, and set to empty, and bold input
function clearText(search_el, text, new_class, orig_class) {
	//var search_el = document.getElementById('search');
	if(search_el.value == text) { //'Search genstyleliving...') {
		search_el.value = '';
	}
	search_el.className = orig_class+' '+new_class; //search_selected';
	return true;
}
		
// if focus goes away from search, see if a query was typed in, if not, set to default text
function addText(search_el, text, orig_class) {
	if(search_el.value == '') {
		search_el.value=text; //'Search genstyleliving...';
	}
	search_el.className = orig_class;
	return true;
}