// ------------------------------------------------------------
// This code is taken from the k10k script library (http://www.k10k.net)
// Some of this code is from the very wonderful Mr. Zeldman, maker of things and particularly zeldman.com
// Clears the standard text in input boxes and texfields
// ------------------------------------------------------------

function alterNate(elm){
	if (!elm.base) elm.base = elm.value
	if (elm.value == elm.base) elm.value = "";
	else if (elm.value == "") elm.value = elm.base;
}
