$(document).ready(function() {
	if (window.location.pathname !== '/submission-error') {
		$('input:text').focus(function() {
			$(this).attr('value','');
		});
	};
});