// 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', contextRoot + '/home.do'],
    ['History', contextRoot + '/history.do'],
    ['FAQ', contextRoot + '/faq.do'],
    ['Calendars', contextRoot + '/calendars.do'],
    ['Online Forms >', null, null,
        ['Membership Application', contextRoot + '/application.do'],
        ['Coach Registration', contextRoot + '/coach.do'],
        ['Test Sessions', contextRoot + '/testSession.do'],
        ['Other Forms', contextRoot + '/pscforms.do']
	],
    ['Info for Members >', null, null,
        ['Board of Governors (PDF)', contextRoot + '/docs/board.pdf'],
        ['Coaches (PDF)', contextRoot + '/docs/coaches.pdf'],
        ['Membership Info', contextRoot + '/membership.do'],
        ['Bylaws (PDF)', contextRoot + '/docs/bylaws.pdf'],
        ['Pictures', contextRoot + '/pictures.do'],
        ['Newsletters', contextRoot + '/newsletters.do'],
        /* ['Princeton Open', contextRoot + '/princetonopen.do'],
        ['Results', contextRoot + '/open.do'], */
        ['Ice Show', contextRoot + '/iceshow.do'],
        ['Dance Weekend', contextRoot + '/danceweekend.do']
    ],
    ['Info for Guests', contextRoot + '/guests.do'],
    ['Board Member Area', contextRoot + '/memberarea.do'],
    ['Group Lessons', contextRoot + '/grouplessons.do'],
	['Links', contextRoot + '/links.do'],
	['Contact Email', 'mailto:princetonsc@aol.com']
];

