// 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', 'http://www.spstingrays.org'],
	['Meet Information', null, null,
		['Qualifying Times', null, null,
			['State', 'state_qtimes.pdf'],
			['Regionals', 'docs/regionals_qtimes.pdf']
		],
		// this is how custom javascript code can be called from the item
		// note how apostrophes are escaped inside the string, i.e. 'Don't' must be 'Don\'t'
		['Swim Meet 101', 'docs/SwimMeetInfo.pdf'],
		['Best Times', 'meet_info/best_times.pdf'],
		['Records', 'meet_info/team_records.pdf'],
        ['Event List', 'http://www.iowaymcacompetitiveswimming.com/App%20F%20OOE.pdf']
	],
    ['Results', null, null,
        ['Summer Archives', null, null,
            ['Summer 2009', 'meet_archives.shtml#summer09'],
            ['Summer 2008', 'meet_archives.shtml#summer08'],
            ['Summer 2007', 'meet_archives.shtml#summer07']
        ],
        ['Winter Archives', null, null,
            ['Winter 2008-09', 'meet_archives.shtml#winter0809'],
            ['Winter 2007-08', 'meet_archives.shtml#winter0708'],
            ['Winter 2006-07', 'meet_archives.shtml#winter0607']
        ],
        ['Turkey Meet', 'meet_info/2009_10/2009TurkeyMeetResults.pdf'],
        ['Scott Cty/W Creek/Maq/Keo', 'meet_info/2009_10/SPSDMWCSCMAQFinalResults.pdf'],
        ['@ Black Hawk County', 'meet_info/2009_10/blackhawk_results.pdf'],
        ['Burlington/Brooklyn', 'meet_info/2009_10/SPSBURBACResults.pdf'],
        ['@ Marshalltown', 'meet_info/2009_10/MarshalltownResults.pdf'],
        ['@ Walnut Creek', 'meet_info/2009_10/WalnutCreekResults.pdf'],
        ['Dubuque/Blackhawk', 'meet_info/2009_10/SPSDBQBHCResults.pdf'],
        ['@ Dubuque', 'meet_info/2009_10/DUBSCResults.pdf'],
        ['Iowa Games', 'meet_info/2009_10/2010IowaGamesResults.html'],	
        ['Scott Cty/Wash/Newt/Musc', 'meet_info/2009_10/SPSMUSCNEWTSCResults.pdf'],
        ['Sectionals', 'meet_info/2009_10/2010_sectionals_results.pdf'],
        ['State', null, null,
            ['Boys Results','meet_info/2009_10/BoysState2010.pdf'],
            ['Girls Results','meet_info/2009_10/GirlsState2010.pdf']
        ],
        ['Regionals', null, null,
            ['Results Not Available']
        ]
    ],    
	['Team Info', null, null,
		// this is how item scope settings are defined
        ['Stoney Point Y Location', 'location.html'],
        ['Coaches', 'staff.shtml'],
        ['Parent Advisory Committee', 'pac.shtml'],
        ['PAC Meeting Minutes', 'PACMinutes.html'],
        ['Parent/Guardian Handbook', 'ParentHandbook2008-2009.pdf'],
        ['Team Apparel', 'apparel.shtml'],
	['Team Directory', 'pcont/directory.pdf']
	],
	['Schedule', null, null,
        ['Calendar', 'http://www.spstingrays.org/scgi-bin/calendar/plans.cgi'],
        ['Practice Times', 'practice.shtml']
	],
    ['Photos', 'photos.shtml'],
    ['Links', 'links.shtml']
];

