jQuery.fn.defaultVal = function(value) {
    $(this).val(value);
  $(this).focus(
		function() { if ($(this).val() == value) $(this).val(''); }
	).blur(
		function() { if ($(this).val() == '') $(this).val(value); }
	);
}