;(function($) {
	$.fn.inputLabel = function(options) {
		return this.each(function() {
			var $settings = jQuery.extend(true, {}, $.fn.inputLabel.defaults, options);
			var $this = $(this);

			var defaultLabel = $this.val();
			$this.focus(function(){
				if ($(this).val() == defaultLabel) {
					$(this).val("");
				}
			});
			$this.blur(function(){
				if ($(this).val() == "") {
					$(this).val(defaultLabel);
				}
			}); 
			
			return null;
		});
	};

	$.fn.inputLabel.defaults = {
	};
})(jQuery);

