// 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 = [
	['Accueil', '/fr/'],
	['Produits', null, null,
		['Habillement', null, null,
		 	['Bottes', 'boots.shtml', null],
			['Chapeaux', 'hats.shtml', null],
			['Chemises', 'shirts.shtml', null],
			['Manteaux', 'jackets.shtml', null],
			['Jeans', 'jeans.shtml'],
		],
		['Stock &agrave; cheval', 'tack.shtml', null],
		['Selles', null, null,
		  	['Western', 'saddles.shtml', null],
			['Selles/Habillement Classique', 'english.shtml', null],
		 ],
		['John Deere', 'johndeere.shtml', null],
		['Bijoux et Boucles', 'jewelry.shtml', null],
	],
	['Liens', 'links.shtml'],
	['Contactez-nous', 'contact.shtml'],
	['English', window.location.pathname.replace('fr','en')]
];

