/*
Rules are symbolic characters that match a certain regular expression.
meioMask haves some defined rules but you may add yours to the rules object.

Making masks will be explained further, and you’ll understand how to glue
all this stuff :P.

meioMask defined rules:
*/

$.mask.rules =  {
	'z': /[a-z]/,
	'Z': /[A-Z]/,
	'a': /[a-zA-Z]/,
	'*': /[0-9a-zA-Z]/,
	'@': /[0-9a-zA-ZçÇáàãéèíìóòõúùü]/
};
