// 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 = [
	['Pr&eacute;sentation','index.html', null,
		// this is how item scope settings are defined
		['Qui sommes nous ? ', 'quisommesnous.html'],
		// this is how multiple item scope settings are defined
		['Philosophie', 'philosophie.html'],
		['Contact', 'contact.html'],
		['Plan d\'acc&egrave;s', 'plan.html']
	],
	['Produits', 'solutions.html', null,
		['eTouch', 'etouch.html'],
		['eFlow', 'eflow.html'],
		['SAP BO Negoce', 'sap-negoce.html'],
		['One Print', 'sap-print.html']
	],
	['Prestations', null, null,
		['Nos services', 'services.html'],
		['Nos comp&eacute;tences', 'competences.html']
	],
	['R&eacute;f&eacute;rences', 'references.html']
	,
	['SAP Partner', 'sap.html']
	,
	['Recrutement', 'recrutement.php']
];

