// 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', {'tw' : '_self'}],
	
	['Despre Apel', null, null,
		['Prezentare','index.php?act=prezentare', {'tw' : '_self'}],
		['Echipa','index.php?act=echipa', {'tw' : '_self'}],
		['Ce ne propunem','index.php?act=propunem', {'tw' : '_self'}],
		['Raport anual','index.php?act=rapoarte_anuale', {'tw' : '_self'}]
	],
	['Servicii','index.php?act=servicii', {'tw' : '_self'}],
	['Legislatie','index.php?act=legislatie', {'tw' : '_self'}],
	['Implicarea ta',null, null,
	 	['Voluntariat','index.php?act=voluntariat', {'tw' : '_self'}],
		['Donatii 2%','index.php?act=doilasuta', {'tw' : '_self'}],
		['Mecenat si Sponsorizare','docs/Mecenat si sponsorizare.pdf', {'tw' : '_blank'}],
	 ],
	['Proiecte in derulare','index.php?act=derulare', {'tw' : '_self'}],
	['Proiecte incheiate','index.php?act=proiecte', {'tw' : '_self'}],
	['Publicatii si resurse', null, null,
		['Publicatii',null, null,
		 	['In domeniu','index.php?act=pub_domeniu', {'tw' : '_self'}],
		 	['Publicatii APEL','index.php?act=pub_apel', {'tw' : '_self'}],
		 ],
		['Buletin Infoprofesional','index.php?act=buletinfo', {'tw' : '_self'}]
	],
	['Galerie foto', 'index.php?act=galerie_foto', null],
	['Mass-Media', 'index.php?act=media', null],
	['Parteneri', 'index.php?act=parteneri', null],
	['Linkuri','index.php?act=links', {'tw' : '_self'}],
	['Contact','index.php?act=contact', {'tw' : '_self'}]
];

var MENU_ITEMS2 = [
	['Home page','index.php', {'tw' : '_self'}],
	['About Apel',null, null,
		['Presentation','index.php?act=prezentare', {'tw' : '_self'}],
		['Apel Team','index.php?act=echipa', {'tw' : '_self'}],
		['Apel Objectives','index.php?act=propunem', {'tw' : '_self'}],
		['Annual report','index.php?act=rapoarte_anuale', {'tw' : '_self'}]
	],
	['Apel Services','index.php?act=servicii', {'tw' : '_self'}],
	['Legislation','index.php?act=legislatie', {'tw' : '_self'}],
	['Your implication',null, null,
	 	['Voluntariate','index.php?act=voluntariat', {'tw' : '_self'}],
		['Donnations','index.php?act=donatie', {'tw' : '_self'}]
	 ],
	['Present projects','index.php?act=derulare', {'tw' : '_self'}],
	['Finished projects','index.php?act=proiecte', {'tw' : '_self'}],
	['Publications and resources', null, null,
		['Publications','index.php?act=publicatii', {'tw' : '_self'},
		 	['In field','index.php?act=pub_domeniu', {'tw' : '_self'}],
		 	['APEL resources','index.php?act=publicatii', {'tw' : '_self'}],
		 
		 ],
		['Infoprofesional newsletter','index.php?act=buletinfo', {'tw' : '_self'}],
		
	],
	['Photo gallery', 'index.php?act=galerie_foto', null],
	['Mass-Media','index.php?act=media', {'tw' : '_self'}],
	['Partners','index.php?act=parteneri', {'tw' : '_self'}],
	['Link','index.php?act=links', {'tw' : '_self'}],
	['Contact','index.php?act=contact', {'tw' : '_self'}]

	
];
