/* These are a series of small javascript helper functions */


/* 
	when the focus is put on the search field it will clear the initial contents
   of the field for the user
*/
function clearField()	{
	if (document.getElementById('search_con').value == "Search for online savings")
		document.getElementById('search_con').value = "";
}