//Función para el envio del email contacto

$(document).ready(function() {
	$('#form, #form_email').submit(function() {
		$.ajax({
			type: 'POST',
			url: $(this).attr('action'),
			data: $(this).serialize(),
			success: function(data) {
				if(data == 1)
				{
					$('#alerta').html('Los datos con * son obligatorios');
				}else if(data == 2)
				{
					$('#alerta').html('Correo no v&aacute;lido');				
				}else
				{
					$('#alerta').html('<span style="color:#000">Correo enviado, gracias.</span>');
					document.getElementById('nombre').value = '';
					document.getElementById('email').value = '';
					document.getElementById('telefono').value = '';
					document.getElementById('cuentanos').value = '';
				}
			}
		})            
		return false;
	}); 
})

//Función para suscripcion en index
$(document).ready(function() {
	$('#form, #fo3').submit(function() {
		$.ajax({
			type: 'POST',
			url: $(this).attr('action'),
			data: $(this).serialize(),
			success: function(data) {
				if(data == 1)
				{
					$('#alerta').html('Correo no v&aacute;lido');
				}else
				{
					$('#email').html('Correo guardado');
				}
			}
		})            
		return false;
	}); 
})  