	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");
				}
			}
		}
	}
	

	function imprimir() {
		$("#div_imprimir").print();
	}

$(function () {
	$.loading({onAjax:true, text:'Cargando ...'});

	$.ajaxSetup({
		contentType: "application/x-www-form-urlencoded;charset=UTF-8",
 		type: "POST"
 	});
 	
});
	
