// 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', pageRoot + 'home.php'],
    ['About Us', null, null,
        ['Who Are We?', pageRoot + 'aboutUs/whoAreWe.php'],
        ['Our Commitment to You', pageRoot + 'aboutUs/ourCommitment.php'],
        ['Why Use Us?', pageRoot + 'aboutUs/whyUseUs.php'],
        ['Testimonials', pageRoot + 'aboutUs/testimonials.php'],
        ['Employment', pageRoot + 'aboutUs/employment.php']
    ],
    ['Services', null, null,
        ['Maintenance', pageRoot + 'services/maintenance.php'],
        ['Mechanical Repairs', pageRoot + 'services/mechanicalRepairs.php'],
        ['Auto Electrical', pageRoot + 'services/autoElectrical.php'],
        ['Accessories & Gifts', pageRoot + 'services/accessoriesAndGifts.php']
    ],
    ['The Team', pageRoot + 'theTeam/main.php'],
    ['Contact Us', null, null,
        ['Contact Information', pageRoot + 'contactUs/contactInfo.php'],
        ['Change Address', pageRoot + 'changeAddress/main.php'],
        ['Estimate Request', pageRoot + 'estimateRequest/main.php'],
        ['Subscribe to Newsletter', pageRoot + 'contactUs/subscribeToNewsletter.php'],
        ['Unsubscribe from Newsletter', pageRoot + 'contactUs/unsubscribeFromNewsletter.php']
    ],
    ['Bookings', pageRoot + 'bookings/main.php'],
    ['Gallery', pageRoot + 'gallery/main.php'],
    ['Links', pageRoot + 'links/main.php']
];

