/* Clears the search box on first click: */
function clearText(field){

	if (field.defaultValue == field.value) {
		field.style.color = '#000';
		field.style.backgroundColor = '#FFF';
		field.value = '';
	} else if (field.value == '') {
		field.value = field.defaultValue;
		field.style.color = '#787878';
		field.style.backgroundColor = '#F9FDFF';
		//field.style.backgroundColor = '#FFF';
	}
}
