// 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 = [
		['Prima Pagina', 'index.php'],
		
		['Noutati', 'noutatigenerale.php'],

		['Istoric', null, null,
			['primii pasi', 'istoric.php', {'tw':'_top'}],
			['galerie foto', 'galerie.php', {'tw':'_top', 'tt':''}],
		],
		
		['Oferta educationala', 'oferta_educationala.php'],
		
		['Resurse', null, null,
			['materiale', 'resurse_materiale.php', {'tw':'_top'}],
			['umane', 'resurse_umane.php', {'tw':'_top', 'tt':''}],
		],
		
		['Profesori', null, null,
			['anunturi interne', 'noutati.php', {'tw':'_top'}],
			['catedre', 'catedre.php', {'tw':'_top', 'tt':'aici puteti vizualiza catedrele'}],
		],
				
		['Elevi', null, null,
			['clase', 'clase.php', {'tw':'_top', 'tt':''}],
			['consilul elevilor', 'consiliuelevi.php', {'tw':'_top'}],
			['situatie scolara', 'rezultateelevi.php', {'tw':'_top'}],
		],
		
		['Rezultate', null, null,
		 ['examene', 'rezultateexamene.php', {'tw':'_top', 'tt':''}],
		 ['olimpiade si concursuri', 'rezultateconcursuri.php', {'tw':'_top', 'tt':''}],
		],
		
		['Activitati extrascolare', null, null,
			['revista scolii', 'revistascolii.php', {'tw':'_top'}],
			['galerie foto', 'galerie_extrascolare.php', {'tw':'_top', 'tt':''}],
		],
		
		['Descarca documente', null, null,
			['documente generale', 'documentegenerale.php', {'tw':'_top'}],
			['planuri cadru', 'planuricadru.php', {'tw':'_top', 'tt':''}],
			['programe scolare', 'programescolare.php', {'tw':'_top', 'tt':''}],
			['documente interne', 'documenteinterne.php', {'tw':'_top'}],
			
		],
			
	   	 ['Firma de exercitiu', 'firmadeexercitiu.php'],
		 
		  ['Concursul "D. Rusu"', 'dumitrurusu.php'],
		
		['Contact', 'contact.php'],
		
		['Legaturi utile', 'legaturiutile.php'],
		
		['Autentificare', 'auth.php'],
];


