// 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 = [
	['Home', 'index.php', null	
	],
	['Contul meu','index.php?x=contulmeu' ,null],
	['Statut','index.php?x=statut',null	 	
		],
	['Colectii ...','index.php?x=colectii',null,
	    ['Lista Colectionari','index.php?x=colectionari',null],
	 	['Cauta o Colectie','index.php?x=colectii',null],
		['Cautare Avansata','index.php?x=cauta',null]
		],
	
	['Aplicatii ...',null,null,
	 ['Articole', 'index.php?x=articole&id_tip=2',null],
	 ['Reparatii','index.php?x=articole&id_tip=3',null],
	 ['Restaurari','index.php?x=articole&id_tip=4',null]
	 
	 ],
	['Anunturi ...', 'index.php?x=anunturi&tip=1', null,
	 	['Adauga Anunt Vand/Cumpar','index.php?x=contulmeu&y=anunturi',null ],
			['Adauga Anunt Servicii','index.php?x=add_anunt',null ],
		['Anunturi Cumparare','index.php?x=anunturi&tip=1', null ],
		['Anunturi Vanzare','index.php?x=anunturi&tip=2', null],
	
	 	
		['Prestari Servicii','index.php?x=anunturi&tip=3',null]
		
		],
	
	
	  ['Donatii','index.php?x=donatii',null],
	
	['Contact ...', null, null,
	  ['Membrii', 'index.php?x=listamembrii', null],
	 ['Linkuri & Parteneri','index.php?x=linkuri',null],
	  ['Contact', 'index.php?x=contact', null]
	  
	 

	 ]
	
];


