$(function() {
	$('input.title-value-replace').each(function() {
		var title = $(this).attr('title');
		if (title != "") {
			$(this).val(title);
			$(this).addClass('title-value-replace-blurred');
			$(this).focus(function() {
				if ($(this).val() == title) {
					$(this).val('');
					$(this).removeClass('title-value-replace-blurred');
				}
			});
			$(this).blur(function() {
				if ($(this).val() == "") {
					$(this).val(title);
					$(this).addClass('title-value-replace-blurred');
				}
			});
		}
	});
});