function enviar(){

		var nombre = $('#nombre').val();
		var email = $('#email').val();
		var asunto = $('#asunto').val();
		var consulta = $('#consulta').val();
		var resultado = $('#consultas');
		
	

if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test($('#email').val()) && nombre != '' && email != ''){

	
		$.post('background.php', { op: 1, nombre: nombre, email:email, asunto:asunto, consulta:consulta }, function(data) { 

		resultado.html(data);

	});
	
} else {
if(!(/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test($('#email').val())) && email != ''){
alert("La direccion de email es incorrecta.");
}
else{
alert("Por favor, complete los campos de Nombre y Email");
}
}
	


	}


