$(document).ready(function(){
						   $('form').each(function(){
							  
						   $(this)[0].reset();

						   });
$('input[type=text]:not(.no_prompt)').each(function(){
var theVal = $(this).val();
$(this).val('');
$(this).form_prompt(theVal);
});
$('textarea:not(.no_prompt)').each(function(){
var theVal = $(this).html();
$(this).html('');
$(this).form_prompt(theVal);
});
						   });
