// 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', null, null,
		['Presentation', 'index.html'],
		['Our history', 'histoire.html'],
		['What\'s new', 'neuf.html'],],

	['Information', null, null,
		['Puppy mills', 'usines.html'],
		['Testimonials', 'temoignages.html'],
		['Documentation', 'docum.html'],
		['Other animals', 'autres.html'],
		['More', 'divers.html'],],

	['Events', null, null,
		['Walks', 'marches.html'],
		['Events to come', 'actions.html'],
		['Fundraising', 'levee.html'],],
	['Sponsors', 'commandites.html'],
	['Sensibilization', 'sensib.html'],
	['Contact', 'contact.html']
];

