<!--

function setText(text) {

	// Used to reset default text in searchform input after focus is lost, but only if the field is empty
	if (text.value.length === 0) {
		text.value = 'Enter search...';
		text.style.color = '#555555';
	}
	
}

function clearText(text) {
	
	// Used to clear default text in searchform input after focus is gained	
	text.value = '';
	text.style.color = '#000000';
	
}

//-->
