;(function($){ $.fn.keytip = function(str){ return this.each(function(){ var obj = $(this); obj.click(function(){ if(obj.val() == str){ obj.val(""); obj.removeClass("keycolor"); } }).focusout(function(){ if(obj.val() == ""){ obj.val(str); obj.addClass("keycolor"); } }); }); };}(jQuery));