$(document).ready(function() {

	$('input.txt').focus(function() {
		if ($(this).val() == $(this).attr("title")) {
		$(this).val("");
	}
	}).blur(function() {
		var title = $(this).attr("title");
		var value = $(this).val();
		if(value=="") {
		$(this).val(title);
		}
	});

});


