$(function() {
	var msg_antispam = "error: you did not enter correctly the verification string";
	var msg_ok = "the email was sent correctly";
	var msg_wrong_email = "el correo electrónico que has introducido no es válido";
	var msg_unfilled = "please fill in all the fields";
	var msg_error_generic = "an error occurred please try again later";
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='';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>');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);
		
});
