$(function() {
	
	$("a#reset").click(function(){
		$("input#name").val("");
		$("input#email").val("");
		$("textarea#message").text("");
	});

});

