function mostrarGrupo(index, sup, lat) {
	var obj;
	for (var i = 0; i < 15; i++) {
		if (sup) {
			obj = document.getElementById("menu_sup_" + i);
			if (obj) {
				obj.className = (i == index? "on": "off");
			}
			obj = document.getElementById("submenu_sup_" + i);
			if (obj) {
				obj.className = (i == index? "on": "off");
			}
		}
		if (lat) {
			obj = document.getElementById("menu_lat_" + i);
			if (obj) {
				obj.className = (i == index? "on": "off");
			}
			obj = document.getElementById("submenu_lat_" + i);
			if (obj) {
				obj.className = (i == index? "on": "off");
			}
		}
	}
}