﻿/* 
				<<< MENU ITEMS DEFINITION RULES >>>
				
- any menu item is defined as array (starts with '[' and ends with ']' with
	comma delimited fields)
- first field is item's text to display. you can put any html here (tables,
	images etc.) this field may be array with three items: menu text in
	normal state, menu text to display when mouse pointer over item and
	menu text to display when mouse key is pressen on item. any thml is
	allowed for all states too
- second field is item's link (this text is printed into anchors href attribute
	so you may put here not only urls, but mailto: javascript: or anything else
	that ok for href). Put here null if you don't want any onclick event for
	the item
- third field is array (starts with '[' and ends with ']') containing overriding 
	sizes for item in format [left, top, width, height]. If item should have
	standard sizes and position put null in place of array. If item should have
	some paremeters overridden put null's in place of others. left and top are
	distances in pixels from origin point. origin point is upper left corner of
	parent item if given item is first on this level of upper left corner of
	previous item on the same level in other case
- rest of attributes are child items defined according to the same rules.
	if item has no child items just close its array here - no nulls required.
	normally last item should not have comma at the end, but here they are
	ok since script ignores them

- if you going to wrap items text into html it is better idea to write wrapper
	functions than repeating html in structure for items with similar formatting.
	function may look like:
		function wrap1 (text) { return ('<center>' + text + '</center>'); }
	then it may be used in structure like this:
		[wrap1('centered text'), 'http://...', null]
	
*/

var MENU_ITEMS = [
	['Home', 'index.cfm', null],
	['Information', null, null,
		['About', 'about.asp', null],
		['Join!', 'join.asp', null],
		['Member Docs', 'documents.asp', null],
		['Directions', 'directions.asp', null],
		['History', 'history.asp', null]
	],
	['Schedules', null, null,
			['Camps', 'rehearsal.asp', null],
			['Summer Tour', 'tour.asp', null]
	],
	['Contacts', null, null,
			['Office', 'office.asp', null],
			['Boards', 'boards.asp', null],
			['Staff', 'staff.asp', null],
			['Members & Alumni', 'alumni/index.cfm', null]
	],
	['Youth Programs', null, null,
			['Colt Cadets', 'cadets/cadets.cfm', null],
			['Youth Choirs', 'dyc.asp', null],
			['Steel Drums', 'steeldrums.asp', null],
			['Summer Band', 'summerband.asp', null]
	],
	['Links', 'links.asp', null,
	],
	['Volunteer', 'volunteer.asp', null],
];
