(function($){$.fn.extend({defaultValue:function(value){return this.filter("input").each(function(){var $self=$(this);if($self.val().length<=0){var $clone=$self.clone().removeAttr("id").removeAttr("name").attr("type","text").addClass("empty").val(value).insertAfter($self);$clone.focus(function(){$(this).hide();$self.show();setTimeout(function(){$self.focus()},10)});$clone.show();$self.hide();$self.blur(function(){if($self.val().length<=0){$clone.show();$self.hide()}})}})}})})(jQuery);