/*
	Function to clear the initial text in the search field and set a more legible font color on focus.
*/
function clearField(el){
	if(el.value=='Enter Your Keywords'){
		el.value = ''
		el.style.color = '#000';
	}
}

function clearName(el){
	if(el.value=='Name'){
		el.value = ''
		el.style.color = '#000';	
	}
}
function clearEmail(el){
	if(el.value=='Email'){
		el.value = ''
		el.style.color = '#000';	
	}
}
function clearPhone(el){
	if(el.value=='Phone'){
		el.value = ''
		el.style.color = '#000';	
	}
}
function clearMessage(el){
	if(el.value=='Message'){
		el.value = ''
		el.style.color = '#000';	
	}
}


