function setupDropdowns(vID, vAC) {
	if (document.getElementById) {
		var nRoot = document.getElementById(vID);
		var vRXA = new RegExp("(^| +)" + vAC + "($| +)");
		for (var i = 0; i < nRoot.childNodes.length; i++) {
			if (nRoot.childNodes[i].nodeName === 'LI') {
				nRoot.childNodes[i].onclick = function() {
					this.className = vRXA.test(this.className) ? this.className.replace(vRXA, " ") : this.className + " " + vAC;
					return true;
				}
			}
		}
	}
}
