					// If nothing has been entered in the textarea, erase the default text
					$("textarea#comments").focus(
						function() {
							if(this.value == "Comments") {
								$("textarea#comments").val("");
							}
						}
					)

					// If nothing has been entered in the textarea, restore the default text					
					$("textarea#comments").blur(
						function () {
							if(this.value == "") {
								$("textarea#comments").val("Comments");
							}
						}
					)
