/**
 * 
 */

jQuery.fn.labelingInputs = function(){
	
	this.each(function(index, element){
		
		var object = $(this);
		
		var inputValue = object.val();
		
		object.focus(function(){
			if ($(this).val() == inputValue) {
				$(this).val("");
			}
		})
		
		object.focusout(function(){
			if ($(this).val() == inputValue || $(this).val() == "") {
				$(this).val(inputValue);
			}
		})
		
		
	});
	
	return this;
};


