// 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', 'javascript:clicked(\'pages/home.html\')'],
        ['Key People', 'javascript:clicked(\'pages/keyPeople.html\')'],
        ['Services Offered', null, null,
	    ['Pre-Construction','javascript:clicked(\'pages/services_preconstruction.html\')'],
            ['Construction','javascript:clicked(\'pages/services_construction.html\')'],
            ['Post-Construction','javascript:clicked(\'pages/services_postconstruction.html\')']
	],
	['References', null, null,
	    ['Appreciation Letters','javascript:clicked(\'pages/references_letters.html\')'],
            ['Partial Client List','javascript:clicked(\'pages/references_clients.html\')']
	],
	['Recent Projects', null, null,
	    ['New York','javascript:clicked(\'pages/projects_newyork.html\')'],
            ['New Jersey','javascript:clicked(\'pages/projects_newjersey.html\')'],
            ['Connecticut','javascript:clicked(\'pages/projects_connecticut.html\')']
	],
	['Locations', null,null,
            ['New York','javascript:clicked(\'pages/locations_newyork.html\')'],
            ['Connecticut','javascript:clicked(\'pages/locations_connecticut.html\')'],
            ['Massachusetts','javascript:clicked(\'pages/locations_massachusetts.html\')']
        ]
];

