$(document).ready(function (){
	var inputs = $('input[type=text]');
	inputs.focus(function (){
		if (this.value == this.title){
			this.value = '';
		}
	}).blur(function (){
		if (this.value == ''){
			this.value = this.title;
		}
	});
});

