// -----------------------------------------------------------------------------
function enviarMail() {
	var inputs = []; // Array con los elementos del formulario
		$(':text', this).each(function() { // Guardar datos en el array
		inputs.push(this.name + '=' + escape(this.value));
	});
	inputs.push($('#consulta').attr('name') + '=' +escape($('#consulta').val()));
	var peticion = $.ajax({
		async:true,
		type: "POST",
		dataType: "html",
		contentType: "application/x-www-form-urlencoded",
		data: inputs.join('&'),
		url: 'mail.php?',
		success: function(respuesta) {
		 	$('div#alfa').show();
			$('div#cajaMensaje').fadeIn();
			$('div#mensaje').prepend(respuesta);
		},
		error: function() { alert('Se ha producido un error'); }
	});
}

// -----------------------------------------------------------------------------

$(document).ready(function(){
	$('#frmContacto').submit(function()
	{
		enviarMail();
		return false;		
	});
	$('input[class="volver"]').click(function()
	{
		$("div#error").remove();
		$("div#cajaMensaje").fadeOut();
		$("div#alfa").hide();
	});
});







