$(function() {
	var msg_antispam = "errore: non hai inserito correttamente i caratteri di verifica";
	var msg_ok = "l'email é stata inviata correttamente";
	var msg_wrong_email = "l'indirizzo email che hai inserito non é valido";
	var msg_unfilled = "per favore completa tutti i campi";
	var msg_error_generic = "si é verificato un errore, prova più tardi";
showRequest=function(a){$('#msg-container').html('<p align="center" style="margin: auto auto;"><img id="loading-img" src="/images/loading.gif" /><div id="result"></div></p>');$('#msg-container').show();return true};
showResponse=function(a){
var b=msg_error_generic;
switch(a){case'err-other':b=msg_error_generic;break;case'err-antispam':b=msg_antispam;break;case'ok':b=msg_ok;break;case'err-emailformat':b=msg_wrong_email;break;case'err-unfilled':b=msg_unfilled;break}$('#loading-img').hide();$('#msg-container').html('<strong>Message:</strong><div id="result">'+b+'</div>');alert(b);Recaptcha.reload()};showError=function(a,b){$('#msg-container').html('<strong>Message:</strong><div id="result">We are sorry but the following error occurred: '+b+'</div>')};var options={target:'#result',beforeSubmit:showRequest,success:showResponse,timeout:10000,error:showError};$('#myForm').ajaxForm(options);
		
});
