$(document).ready(function() {
	$('input[value]').each(function(){
		if(this.type == 'text' && (this.name == 'name' || this.name == 'from' || this.name == 'email')) {
			$(this).focus(function(){ if (this.value == this.defaultValue) { this.value = ''; }});
			$(this).blur(function(){ if (!this.value.length) { this.value = this.defaultValue; }});
		}
	});
});