/**
 * jQuery Validation Plugin 1.9.0
 *
 * http://bassistance.de/jquery-plugins/jquery-plugin-validation/
 * http://docs.jquery.com/Plugins/Validation
 *
 * Copyright (c) 2006 - 2011 Jörn Zaefferer
 *
 * Dual licensed under the MIT and GPL licenses:
 *   http://www.opensource.org/licenses/mit-license.php
 *   http://www.gnu.org/licenses/gpl.html
 */

jQuery.validator.addMethod("letrasespacios", function(value, element) {
	return this.optional(element) || /^[a-zA-Z\'\sáéíóúñÑÁÉÍÓÚüÜ]+$/i.test(value);
}, "Letters only please");

