function on(id) {
	for (var i=0; i<cat[id].length; i++) {
		var el = document.getElementById("cat_"+cat[id][i]);
		if (el) {
			el.setAttribute("class", "linkOn");
		}
	}
}

function off(id) {
	for (var i=0; i<cat[id].length; i++) {
		var el = document.getElementById("cat_"+cat[id][i]);
		if (el) {
			el.setAttribute("class", "linkOff");
		}
	}
}
