// JavaScript Document
(function($){
	jQuery.fn.email=function(){
		if(/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test($(this).val())){
			return true;
		}else{
			$(this).focus();
			return false;
		}
	};
})(jQuery);

function save(){
	var thiss = jQuery('input[name=email]');
	if(thiss.email())
	{
		jQuery.ajax({
			url: 'wp-content/themes/hablaSpanich/mysql/i.php',
			type: "POST",
			data: "email="+thiss.val(),
			success: function(data){
				thiss.val(data);
			}
		});
	}else{
		thiss.val('Formato incorrecto');
	}
}
