jQuery(document).ready(function($) {

$('.feedback_form_new input').each(function(index) {    
	$(this).click(function() {
	  $(this).attr('value', '');
	});
  });

$('.feedback_form_new textarea').each(function(index) {    
	$(this).click(function() {
	  $(this).attr('value', '');
	});
  });

});


