$(function() {
	$('*:input[title != ""]').each(function() {
		if(!$(this).val()) $(this).val(this.title);
	});
	$('*:input[title != ""]').focus(function() {
		if($(this).val() == this.title) $(this).val('');
	});
	$('*:input[title != ""]').blur(function() {
		if($(this).val() == '') $(this).val(this.title);
	});
});
