// 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 = [
	['Portail', null, null,
		['Présentation', 'index.html'],
		['Notre histoire', 'histoire.html'],
		['Quoi de neuf', 'neuf.html'],],

	['Information', null, null,
		['Usines à chiots', 'usines.html'],
		['Témoignages', 'temoignages.html'],
		['Documentation', 'docum.html'],
		['Autres', 'autres.html'],
		['Divers', 'divers.html'],],

	['Événements', null, null,
		['Marches', 'marches.html'],
		['Actions à venir', 'actions.html'],
		['Levée de fonds', 'levee.html'],],
	['Commanditaires', 'commandites.html'],
	['Sensibilisation', 'sensib.html'],
	['Contact', 'contact.html']
];

