$(document).ready(function(){		
	$('input, textarea').focus(function(){
		$(this).val('');
	});
});

