// 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 = [
	['<img src="images_menu/home.jpg">', 'index.html', null],
	['<img src="images_menu/company.jpg">', null, null,
		['Appartement du RDC', 'appart_rdc.html', null],
		['Appartement du 1er étage', 'appart_1er.html', null],
		['Appartement du 3ème', 'appart_3eme.html', null],
	],
	['<img src="images_menu/products.jpg">', 'services.html', null],
	['<img src="images_menu/services.jpg">', null, null,
		['Tarifs du RDC', 'tarifs_rdc.html', null],
		['Tarifs du 1er étage', 'tarifs_1er.html', null],
		['Tarifs du 3ème', 'tarifs_3eme.html', null],
	],
	['<img src="images_menu/contacts.jpg">', 'contacts.html', null]
];


