jQuery(document).ready(function () {
	var tempinputval;
	jQuery('#edit-submitted-name,#edit-submitted-email,#edit-submitted-message').focus(function(){
	    tempinputval = this.value;
		this.value = '';
	 }).blur(function(){
		if (this.value == '') {
			this.value = tempinputval;
		};
	 });

});
