// 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', '/en/'],
	['Products', null, null,
		['Apparel', null, null,
		 	['Boots', 'boots.shtml', null],
			['Hats', 'hats.shtml', null],
			['Shirts', 'shirts.shtml', null],
			['Jackets', 'jackets.shtml', null],
			['Jeans', 'jeans.shtml'],
		],
		['Tack', 'tack.shtml', null],
		['Saddles', null, null,
		  	['Western', 'saddles.shtml', null],
			['English Saddles & Apparel', 'english.shtml', null],
		 ],
		['John Deere', 'johndeere.shtml', null],
		['Jewelry / Buckles', 'jewelry.shtml', null],
	],
	['Links', 'links.shtml'],
	['Contact Us', 'contact.shtml'],
	['Français', window.location.pathname.replace('en','fr')]
];


