
function setActiveMain(id) {
	if (id != '') {
		document.getElementById(id).style.color = "#ccd311";

	}
}
function setActiveSub(id) {
	if (id != '') {
		document.getElementById(id).style.backgroundColor = "#ccd311";

	}
}
function setActiveSubSub(id) {
	if (id != '') {
		document.getElementById(id).style.fontWeight = "700";

	}
}

