// JavaScript Document

function clearText(thefield){
	if(thefield.value == thefield.defaultValue)
	{
			thefield.value = "";
			$(thefield).css("color", "black");
	}
}

function putText(thefield) {
	if (thefield.value == "")
	{
		thefield.value = thefield.defaultValue;
		$(thefield).css("color", "#555");
	}
}

