;(function($){
	$.fn.inputDefault = function(settings){
	 var _default = {
	   replace : true
	 };
	 
	 $.extend( _default, settings );

	 return this.each(function(){
		var $this = $(this),
			initValue = $this.val();
		
		$this.focus(function(){
			if ($this.val() == initValue)
				$this.val('');
		});
		
		$this.blur(function(){
			if ($this.val().length<1)
				$this.val(initValue);
		});
		
	 });
	};
})(jQuery);

