
$(document).ready(function() {
	if($('#usr_tmv_rede').length) {
		switchCheckboxNoneOfAbove('#usr_tmv_rede', 6);
	}
});

function switchCheckboxNoneOfAbove(sXpathContainer, sNoneValue) {
	$(sXpathContainer).find('INPUT').click(function() {
		if($(this).attr('value')==sNoneValue) {
			if($(this).attr('checked')) { $(sXpathContainer).find('INPUT[@value!=' + sNoneValue + ']').removeAttr('checked'); }
		} else {
			if($(this).attr('checked')) { $(sXpathContainer).find('INPUT[@value=' + sNoneValue + ']').removeAttr('checked'); }
		}
	});
}

function showMenoresAnosNascimento(iNumMenores) {
	qobj = document.getElementById('usr_menores_anos_nascimento');
	if (iNumMenores <= 0 ) { 
		if (qobj) { qobj.style.visibility = 'hidden'; qobj.style.display='none';  }
	} else { 
		if (qobj) { qobj.style.visibility = 'visible'; qobj.style.display=''; }
		for(var i=0; i<iNumMenores && i<12; i++) {
			obj = document.getElementById('frm_usr_menores_anos_nascimento_'+i);
			if (obj) { obj.style.visibility = 'visible'; obj.style.display=''; }
		}
		for(var i=iNumMenores; i<12; i++) {
			obj = document.getElementById('frm_usr_menores_anos_nascimento_'+i);
			if (obj) { obj.style.visibility = 'hidden'; obj.style.display='none'; }
		}
	}
}