// 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', 'http://www.bluewaveswimteam.com/documents/2012YStateQualifyingTimesandEventOrder.pdf'],
            		['Regionals', 'docs/RochesterRegionalsQuals.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'],
        	['2012 Regional Championship', '/docs/2011-2012 North Central Regional Short Course Swim Meet.pdf'],
                ['Regional Qualifiers', '/meet_info/regionals.pdf'],
        	['Records', null, null,
        	['New Records', '/meet_info/NewRecords.pdf'],
            	['Team Records', '/meet_info/TeamRecords.pdf'],
            	['State Records', '/meet_info/StateRecords.pdf']
        ]
	],
    ['Results', null, null,
        ['Summer Archives', '/meet_archives.php#summer'],
        ['Winter Archives', '/meet_archives.php#winter']
    ],    
	['Team Info', null, null,
		// this is how item scope settings are defined
        	['Stoney Point Y Location', '/location.html'],
        	['Coaches', '/staff.php'],
                ['Practice Squads', '/docs/Practice Squads.pdf'],
        	['Parent Advisory Committee', '/pac.php'],
		//['Upcomming PAC Meeting Agenda', '/docs/2011-12-06 PAC Agenda.pdf'],
        	['PAC Meeting Minutes', '/docs/2012-01-10 Minutes.pdf'],
		['Team Newsletter', '/docs/2012-01-31 News.pdf'],
		//['Team Apparel Order Form', '/docs/2011-2012 Stingrays Apparel Order Form.pdf']
		['Team Suit Individual Orders', 'http://www.agonswim.com/cgi-bin/orders/customProductsK.cfm?page=all&clientid=32081']

],
	['Schedule', null, null,
        	['Calendar', 'http://www.spstingrays.org/cgi-bin/calendar/plans.cgi'],
        	['Practice Times', '/practice.php']
],
    ['Photos', null, null,
        ['Team Photos', '/photos.php'],
        ['SmugMug', 'http://spstingrays.smugmug.com/']
    ],
    ['Links', '/links.php'],
    ['Sign-Ups', null, null,
	['Swimmer Meet Sign-Up','http://www.spstingrays.org/pcont/signup.php?season=winter&seasonid=6'],
       	['Volunteer Sign-Up', 'http://www.SignUpGenius.com/index.cfm?go=c.SignupSearch&mid=735912'],
	['View Sign-Ups','http://www.spstingrays.org/pcont/signupsheet.php?season=winter&seasonid=6']
    ]
];
