(function($){
	/* defaultText by Manoj Patel */
	$.fn.defaultText = function(defaultValue) {
		return this.each(function() {
			if(defaultValue){
				this.defaultValue = defaultValue;
				this.value = defaultValue;
			}
			var $this = $(this);
			$this.focus(function(){
				if(this.value == this.defaultValue){
					this.value = "";
				}
			});
			$this.blur(function(){
				if(this.value == ""){
					this.value = this.defaultValue;
				}
			});
		});
	};
	
})(jQuery);