$(document).ready(function(){

$("input[type=text], select, textarea").focus(function() {
		if (this.value == this.defaultValue)
		{
			this.value = "";
			return false;
		}
	});
	$("input, textarea").blur(function() {
		if (this.value == "")
		{
			this.value = this.defaultValue;
			return false;
		}
	});

});
