// JavaScript Document 
// fonte: http://digitalbush.com/projects/masked-input-plugin
// 		  http://raymonsanches.wordpress.com/2007/11/09/3/

jQuery(function($){
   $("#cf3_field_8").mask("999.999.999-99");
	$("#cf3_field_5").mask("99/99/9999");
   $("#cf3_field_19, #cf3_field_20").mask("(99) 9999-9999");
   $("#cf3_field_15").mask("99999-999");
   $("#cf3_field_32").mask("9999");
});

