
	var nsEventos = {};  //Container de variáveis e funções inerentes aos Eventos

	nsEventos.ini = function(){
		jq('#ufs').change(function(){
			nsForm.eventosDeObj.ufs_change(this.id)
		});fb.logEventoRegistrado('ufs', 'change', 'nsForm.eventosDeObj.ufs_change(this.id)');

		jq('#locais').change(function(){
			nsForm.eventosDeObj.locais_change(this.id)
		});fb.logEventoRegistrado('locais', 'change', 'nsForm.eventosDeObj.locais_change(this.id)');

		jq('#btnBuscarCep').click(function(){
			nsForm.eventosDeObj.btnBuscarCep_click()
		});fb.logEventoRegistrado('btnBuscarCep', 'click', 'nsForm.eventosDeObj.btnBuscarCep_click()');

		jq('#btnSubmitForm').click(function(){
			nsForm.eventosDeObj.btnSubmitForm_click()
		});fb.logEventoRegistrado('btnSubmitForm', 'click', 'nsForm.eventosDeObj.btnSubmitForm_click()');
		
		jq('#tblRedePropria input[type=checkbox]').click(function(){
			nsForm.eventosDeObj.ctrlQtdsRedePropria(this)
		});fb.logEventoRegistrado('ctrlQtdsRedePropria', 'click', 'nsForm.eventosDeObj.ctrlQtdsRedePropria()');
		
	};window.startOnLoaded('nsEventos.ini');

	/*-- Eventos registrados separadamente para registro após inicialização da página ------------------------------*/
	nsEventos.ctrlQtdsRedeConcorrente = function(){
		jq('#tblRedeConcorrente input[type=checkbox]').click(function(){
			nsForm.eventosDeObj.ctrlQtdsRedeConcorrente(this);
		});fb.logEventoRegistrado('ctrlQtdsRedeConcorrente', 'click', 'nsForm.eventosDeObj.ctrlQtdsRedeConcorrente()');
	}
	