// 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 = [
					['&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;HOME', ' index.html'],
					['&nbsp;&nbsp;&nbsp;ABOUT US', 'aboutus.html', null,
						['&nbsp;&nbsp;&nbsp;OUR TEAM', ' about_ourteam.html'],
						['&nbsp;&nbsp;&nbsp;PARTNERSHIPS', ' about_partnerships.html'],
						['&nbsp;&nbsp;&nbsp;VENDOR LIBRARY', ' about_vendor.html']// there must be no comma after the last element
					],
					['OUR SERVICES', 'ourservices.html', null,
						['SPACE PLANNING & DESIGN', ' o_spacedesign.html'],
						['PROJECT MANAGEMENT', ' o_projectmanagement.html'],
						['CHAIR DEMO', ' o_chair.html'],
						['DELIVERY/INSTALLATION', ' o_delivery.html'],
						['MOVE/RELOCATION', ' o_move.html']// there must be no comma after the last element
					],	
					['&nbsp;&nbsp;&nbsp;PRODUCT CENTER', 'products.html', null,
						['&nbsp;&nbsp;&nbsp;WORKSTATIONS', ' pro_work_monolithic.html'],
						['&nbsp;&nbsp;&nbsp;SEATING', ' pro_seat_ergonomics.html'],
						['&nbsp;&nbsp;&nbsp;PRIVATE OFFICES', ' pro_office_laminate.html'],
						['&nbsp;&nbsp;&nbsp;TABLES', ' pro_table_conference.html'],
						['&nbsp;&nbsp;&nbsp;FILING/STORAGE', ' pro_file_lateral.html'],
						['&nbsp;&nbsp;&nbsp;ARCHITECTURALS', ' pro_arch_floor.html'],
						['&nbsp;&nbsp;&nbsp;FOCUSED MARKET', ' pro_focus_health.html'],
						['&nbsp;&nbsp;&nbsp;MISC.', ' pro_misc_ergonomics.html']// there must be no comma after the last element
					],
					['&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;PORTFOLIO', 'portfolio.html', null,
						['&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;SUCCESS STORIES', ' p_successstories.html'],
						['&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;OUR CLIENTS', ' p_ourclients.html']// there must be no comma after the last element
					],
					['&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;CONTACT US', ' contactus.html']// there must be no comma after the last element
					
				];
					
			
		


