$(document).ready(function() {

	var activeInputValue = '';
	$('body').find('input[type="text"], textarea').each(function(){
	  $(this).focus(function(){
	    activeInputValue = $(this).val();
	    $(this).val('');
	  });
	  $(this).blur(function(){
	    if($(this).val() == '')$(this).val(activeInputValue);
	    activeInputValue = '';
	  });
	});


});