function hidebox2(id)
{
	$("#"+id).fadeOut("normal");
}

function resetForm()
{
	$("#name").attr("value","");
	$("#address").attr("value","");
	$("#housename").attr("value","");
	$("#postcode").attr("value","");
	$("#phone").attr("phone","");
	$("#message").html("");
	$("#image").attr("value","");
	$("#products_checks input").removeAttr("checked");
	$("#hear input").html("");
}

$(document).ready(function(){
	$("#reseter").click(function(event){
		event.preventDefault();
		resetForm();
	});
});