var states = ['mout', 'mover', 'mdown'],

MENU_ITEMS0 = [
	[wrap_root('<span class="menuHeader">Home</span>', 'd'), '/index.asp', {'sw' : 100, 'bw' : 150},
		['&nbsp;History', '/home/history.asp'],
		['&nbsp;Facility', '/home/facility.asp'],
		['&nbsp;Buffalo Equestrian Center', '/home/bec.asp'],
		['&nbsp;SBS Farms, Inc.', '/home/sbs_farms.asp']
	],
	[wrap_root('<span class="menuHeader">About Us</span>', 'd'), '/aboutus/index.asp', {'sw' : 100, 'bw' : 130},
		['&nbsp;Meet the Instructors', '/aboutus/instructors.asp'],
		['&nbsp;Meet the Riders', '/aboutus/riders.asp'],
		['&nbsp;Meet the Volunteers', '/aboutus/volunteers.asp'],
		['&nbsp;Meet the Horses', '/aboutus/horses.asp'],
		['&nbsp;Values &amp; Goals', '/home/values_goals.asp']	
	],
	[wrap_root('<span class="menuHeader">Programs</span>', 'd'), '/programs/index.asp', {'sw' : 101},
		['&nbsp;Program Schedule', '/programs/schedule.asp'],   
		['&nbsp;Student Application', '/programs/student_application.asp'],
		['&nbsp;Horse Shows', '/programs/horse_shows.asp'],
		['&nbsp;BIHS 2010', '/programs/bihs.asp'],
		['&nbsp;Instructional Clinics', '/programs/instructional_clinics.asp'],
		['&nbsp;BEC Summer Camp', '/programs/summer_camp.asp']
	],
	[wrap_root('<span class="menuHeader">How To Help</span>', 'd'), '/howtohelp/index.asp', {'sw' : 142, 'bw' : 130},
		['&nbsp;Make A Donation', '/howtohelp/donate.asp'],
		['&nbsp;Become a Volunteer', '/howtohelp/volunteer.asp']

	],
	[wrap_root('<span class="menuHeader">News</span>', 'd'), '/news/index.asp', {'sw' : 100},
		['&nbsp;News Releases', '/news/press_releases.asp'],
		['&nbsp;BTRC Awards', '/news/awards.asp']
	]
];

function wrap_root (text,pos) {
	var res=[]; for (var i=0; i<states.length; i++)
		res[i]='&nbsp;' + text + '&nbsp;<img src=/icons/' + i + pos + 'arrow.gif width=12 height=12 align=absmiddle>&nbsp;';
	return res;
}

/*
		[wrap_root('Facility', 'r'), null,
			['SBS Farms', null],
			['The BEC', null]
		]

		[wrap_root('Facility', 'r'), null,
			['&nbsp;Summer Camp', null],
			['&nbsp;Adult App', null],
			['&nbsp;Child App', null]
		]
*/