$.fn.extend({
        defaultValue: function(text){
    		var text = text;
    		return $(this).each(function(){
    			var $self = $(this);
    			$self.bind('focus',function(){	if($self.val() == text){$self.val('')} });
    			$self.bind('blur',function(){	if($.trim($self.val()) == ''){$self.val(text)} });
    			if($self.val() == '') $self.trigger('blur');
    		});
        }
    });
