function clearDefaultandCSS(inputElement) {
	if (inputElement.defaultValue==inputElement.value) inputElement.value = ""
	// If Dynamic Style is supported, clear the style
	if (inputElement.style) inputElement.style.cssText = ""
}

//This function takes a newSize of SM, MD, or LG and
//changes the font size of appropriate elements
//some elements must not be changed or the design will "break"
function resizeFont(newSize){
	switch (newSize) {
		case "SM":
			document.body.style.fontSize = ".8em";
			menuItems = document.getElementById("header");
			menuItems.style.fontSize = "1.05em";
			break;
		case "MD": 
			document.body.style.fontSize = "1.1em";
			menuItems = document.getElementById("header");
			menuItems.style.fontSize = ".77em";
			break;
		case "LG": 
			document.body.style.fontSize = "1.4em";
			menuItems = document.getElementById("header");
			menuItems.style.fontSize = ".62em";
			break;
		default:
	}

}


