$(document).ready(function(){
	$(".toggleformtext").each(registerToggleFormText);
})

function registerToggleFormText()
{
	$(this).data("outValue", $(this).attr("value"));
	
	$(this).bind("focus", function() {
		if ($(this).val() == $(this).data("outValue"))
			$(this).val("");
	})
	$(this).bind("blur", function() {
		if ($(this).val() == "")
			$(this).val($(this).data("outValue"));
	})
}

