// items structure
// each item is the array of one or more properties:
// [text, link, settings, subitems ...]
// use the builder to export errors free structure if you experience problems with the syntax

var MENU_ITEMS = [
	['Nosotros', null, null,
		['Visi&oacute;n y Misi&oacute;n', 'vision-mision.html'],
		['Clientes', 'index.html', null,
		 	['IMSS'],
			['CFE'],
			['IFE'],
			['Pe&ntilde;oles']
			],
		['Casos de &eacute;xito', 'index.html', null,
		 	['Red Metropolitana'],
			['DWDM CFE'],
			['VPN IMSS'],
			['Call Center CFE']
			],
		['Contacto', 'contacto.html'],
		['Inicio', 'index.html']
	],
	['Consultor&iacute;a', null, null,
		['Redes convergentes', 'redes-convergentes.html'],
		['Monitoreo', 'index.html'],
		['Proy. Llave en mano', 'index.html']
	],
	['Hardware', null, null,
		['Routing', 'index.html'],
		['Switching', 'index.html'],
		['IP-PBX', 'index.html'],
		['CCTV', 'index.html'],
		['TV-IP', 'index.html']
	],
	['Software', null, null,
		['Seguridad', 'index.html'],
		['Monitoreo', 'index.html']
	],
	['Desarrollo', null, null,
		['An&aacutelisis', 'index.html'],
		['Dise&ntilde;o', 'index.html'],
		['Lenguages', 'index.html', null,
		 	['C++'],
			['Java'],
			['RoR']
			],
		['Bases de datos', 'index.html', null,
		 	['Oracle'],
			['Postgres'],
			['PostGIS'],
			['MySQL']
			],
	],
];


