$(document).ready(function(){

	$("input[type=text]").click(function(){

		this.value = "";
		
	});
	
	$("input[type=text]").blur(function(){
	
		if(this.value == ""){
			this.value = this.defaultValue;
		}
		
	});
	
});

