<!--
function clearinput(inputbox, default_text){
	inputbox = $(inputbox);
	if (inputbox.value == default_text){
		inputbox.style.color = "#333333";
		inputbox.value="";
	}
}

function check_input_and_submit(inputbox, default_text, submit_button) {
	if ( $(inputbox).value == default_text || $(inputbox).value.blank() ) {
		clearinput(inputbox, default_text);
		$(inputbox).focus();
		return false;
	} else {
		return true;
	}
}

function fancy_button_mousedown(button_prefix, content_dom_id){
	document.getElementById(content_dom_id).style.backgroundColor=document.getElementById(button_prefix + '_shadow2').style.borderTopColor;
}

function fancy_button_mouseup(button_prefix, content_dom_id){
	document.getElementById(content_dom_id).style.backgroundColor='';

}
function fancy_button_mouseover(button_prefix, content_dom_id){
	document.getElementById(content_dom_id).style.backgroundColor=document.getElementById(button_prefix + '_shadow2').style.backgroundColor;
}
-->
