// 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'],
	['About Us', 'aboutus.php'],
	['Portfolio', null, null,
		['Bridge Repair', 'bridgerepair.php'],
		['Boat Ramp', 'boatramp.php'],
		['Dredging', 'dredging.php'],
		['River Crossing', 'rivercrossing.php'],
		['River Diversion', 'riverdiversion.php'],
		['Shoreline', 'shoreline.php'],
		['Wetlands', 'wetlands.php']
	],
	['Contact Us / Quote', 'requestquote.php'],
	['Administration', 'admin.php']
];

