$(function() {
	$('#comments').focus(function(){
		if (this.value == 'Your comments...') { this.value = ''; }
	});
	$('#comments').blur(function(){
		if (this.value == '') { this.value = 'Your comments...'; }
	});
});
