$(document).ready(function() {
	var inpt = $("input:text, textarea, input:password");
	inpt.each(function(){
			if(this.value == '') this.value = this.title;
	}).focus(function(){
			if(this.value == this.title) this.value = '';
	}).blur(function(){
			if(this.value == '') this.value = this.title;
	});
});
