var initForm = function(){
	maskForm();
};

var maskForm = function(){
	/* CPF */
	$('input[id*=Cpf]').setMask('cpf');
	/* Cep */
	$('input[id*=Cep]').setMask('cep');
	/* Telefone, Celular, Fax */
	$('input[id*=Telefone]:not(.telefoneSite), input[id*=Celular], input[id*=Fax]').setMask('phone');
	$('.telefoneSite').unsetMask();
	/* Moeda */
	$('input[id*=Preco], input[id*=Valor]').setMask('decimal');
	/* Data */
	$('input[id*=Data]').setMask('date');
	$('input[id*=Numero]').setMask('99999999999');
	/* Desconto */
	$('input[id*=Hora]').setMask('time');
}

/* Chama o INIT */
$(initForm);

