/*********************************/
/*
/* 	Author: Mathieu Price
/*
/*	Contact: primat777@hotmail.com
/*
/*********************************/
;(function($){
	$.fn.jInputLabel = function(options) {

  var defaults = {
		str : ''
  };
  var options = $.extend(defaults, options);
	
		return this.each(function(i) {
															
			$(this).bind('blur', function(e) {
				if ($(this).val() == '') {
					$(this).val(defaults.str);
				}
			});
			
			$(this).bind('focus', function(e) {
				if ($(this).val() == defaults.str) {
					$(this).val('');
				}
			});											
		});
	};
})(jQuery);
