﻿/**
 * 
 * Objeto Literal Index
 * @author Edy Segura, edy@segura.eti.br
 * 
 */

var Index = {
	
	init: function() {
		Index.setInputMask();
	},
	
	setInputMask: function() {
	
		var aInputTelefone = document.getElementsByName('txtcustom1');
	
		for(var i=0; i<2; i++) {

			MaskInput(aInputTelefone[i], "(99) 9999-9999");
		
		}
	}
	
};

window.onload = Index.init;
