$(function() {
	$('input[title]').bind({
		focus: function() {
			if ($(this).attr('title') == $(this).val()) {
				$(this).val('');
			}
		},
		blur: function() {
			if ($(this).val() == '') {
				$(this).val($(this).attr('title'));
			}
		}
	});
});
