// 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','index.php?pageid=1'],
	['About Us', null, null,
		['Company Introduction', 'inner.php?pageid=9&sectionid=1'],
		['Our Team', 'inner.php?pageid=9&sectionid=2'],
		['Organogram', 'inner.php?pageid=9&sectionid=16'],
		['Registrations & Affiliations', 'inner.php?pageid=9&sectionid=3'],
		['Associates', 'inner.php?pageid=9&sectionid=4'],
		['Certifications', 'inner.php?pageid=9&sectionid=5'],
		['Tax Returns', 'inner.php?pageid=9&sectionid=17'],
	],
	['Clients', null, null,
		['Clients List', 'inner.php?pageid=10&sectionid=7'],
		['Client Feedback', 'inner.php?pageid=10&sectionid=18'],
	],
	['Projects', null, null,
		['Architectural Projects', null, null,
			['Commercial Projects', 'index.php?projecttype=Commercial Projects&categoryid=1&pageid=23'],
			['Residential Projects', 'index.php?projecttype=Residential Projects&categoryid=1&pageid=23'],
		],
		['Interior Projects', null, null,
			['Commercial Projects', 'index.php?projecttype=Commercial Projects&categoryid=8&pageid=24'],
			['Residential Projects', 'index.php?projecttype=Residential Projects&categoryid=8&pageid=24'],
		],
		['Engineering Projects', null, null,
			['Commercial Projects', 'index.php?projecttype=Commercial Projects&categoryid=9&pageid=25'],
			['Residential Projects', 'index.php?projecttype=Residential Projects&categoryid=9&pageid=25'],
		],
		['Development Projects', null, null,
			['Commercial Projects', 'index.php?projecttype=Commercial Projects&categoryid=10&pageid=26'],
			['Residential Projects', 'index.php?projecttype=Residential Projects&categoryid=10&pageid=26'],
		],
		['Project Management', null, null,
			['Commercial Projects', 'index.php?projecttype=Commercial Projects&categoryid=11&pageid=27'],
			['Residential Projects', 'index.php?projecttype=Residential Projects&categoryid=11&pageid=27'],
		]		
	],
	['News', null, null,
		['News', 'inner.php?pageid=11&sectionid=19'],
		['Events', 'inner.php?pageid=11&sectionid=20'],
	],	
	['Downloads','inner.php?pageid=12&sectionid=9'],
	['Careers','inner.php?pageid=14&sectionid=23'],
	['Blog','inner.php?pageid=15&sectionid=12'],
	['Inquiry','inner.php?pageid=16&sectionid=14'],
	['Contact', 'inner.php?pageid=13&sectionid=10']
];


