function resetInfo() {

	$("#nome").val('');
	$("#email").val('');
	$("#richiesta").val('');
	document.getElementById('autorizzo').checked = false;



	$("#cortesia").fadeOut(1500,
		function () {
			$("#indirizzi").fadeIn(1500);
		}
	);

}

function sendInfoRequest() {
	if (validate($('form_info'))) {
		$.ajax( {
			method: "post",
			url: "ajax_sendMail.php",
			data: $('#form_info').serialize()+ '&type=contatti',
			success: function(html) {
			        $("#contatti").hide(1500, function() {
		        		$("#cortesia").show("slow", function() {
							setTimeout('resetInfo()',2000);
		        		} );
					} );
			}
		} )
	} else {
		alert('errore');
	}
}
