(function($){
	jQuery.fn.DefaultValue = function(value){
		return this.each(function(){
			if(this.type != 'text' && this.type != 'password' && this.type != 'textarea')
				return;
			$(this).val(value).css("color","#ccc").focus(function(){			
				$(this).css("color","#000");
				if ($.trim($(this).val()) == value)
					$(this).val("");
			}).blur(function(){
				var search = $(this).val();
				if (search == "" || search == value)
					$(this).val(value).css("color","#ccc");
			});
		});
	};
})(jQuery);
