// 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 = [
	
	[wrap('Accueil'), 'accueil.php',null
	],
	[wrap('Actualités'),'actualites.php',null
	],
	[wrap('Produits'), 'produits.php',null
	],
	[wrap('Services'), 'services.php',null,
		//['SAV / Réparation', 'services_SAV.php'],
		//['Formation', 'services_formation.php'],
		//['Conseil', 'services_conseil.php'],
		//['Gestion de Projets', 'services_gestion.php'],
		//['NTIC', 'services_informatique.php'],
		//['Financier', 'services_financier.php']
	],
	[wrap('Partenariats'), 'partenariats.php',null
	],
	[wrap('Références'), 'references.php',null
	],
	[wrap('Gigaplus'), 'savoir-faire.php', null,
		//['Historique', 'historique.php'],
		//['Savoir Faire', 'savoir-faire.php']
	],
	[wrap('Contact'), 'coordonnees.php', null,
		//['Coordonnees', 'coordonnees.php'],
		//['Formulaire', 'formulaire.php']
	],
	[wrap('Boutique'), 'boutique.php', null
	]

];


function wrap(caption) {

if (caption == CURRENT_ITEM)
//return '<font color="#f6d342">' + caption + '</font>';
return '<div class="courant">' + caption + '</div>';
else
return caption;
}
