(function($){ 	
	$.fn.jToggleValue = function (options){
		var defaults = {
			speed:500,
			easing:"linear"
		};		
		var options = $.extend(defaults, options);
		 
		return this.each(function() {  
			var focus = function (){
				if(this.value === this.defaultValue){
					this.value = "";
				}
			};
			var blur = function (){
				if(this.value === ""){
					this.value = this.defaultValue;
				}
			};
			$(this).focus(focus).blur(blur);
		}); 
	}; // end $.fn.jToggleValue
	
})(jQuery);

