// 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 = [
	['Principal','index.html'],
	['Divulgación','Espcons.html'],	
	['Instrumentos', null, null,
	    ['Operativos', 'instrumentos.html'],
		['Desarrollo', 'Espcons.html'],
	],
	['Investigación', null, null,
		['Ozono', 'ozono.html'],
		['Aerosoles', 'aerosoles.html'],
		['Radiación Solar', 'radiacion.html'],
		['Gases Traza', 'gas.html'],
		['Rayos', 'rayos.html'],
	],
	['Sitios','sitios.html'],
	['Proyectos', null, null,
		['UVO3 Patagonia', 'uvo3pat.html'],
		['CTA', 'cta.html'],
		['PICT', 'Espcons.html'],
	],
	['Integrantes', 'integrantes.html'],
	['Produc. cient.', 'produccion.html'],
 ];


