var states = ['mout', 'mover', 'mdown'],
MENU_ITEMSO = [
	[wrap_root('About Us'), null, null,
		[wrap_child('What is TBAVA?','arrow.gif'), 'default.asp?pg=What is TBAVA?', null],
		[wrap_child('Who We Are','arrow.gif'), 'default.asp?pg=Who We Are', null],
		[wrap_child('What We Offer','arrow.gif'), 'default.asp?pg=What We Offer', null],
		[wrap_child('Annual General Meeting','arrow.gif'), 'default.asp?pg=Annual General Meeting', null],
		[wrap_child('Contact Us','arrow.gif'), 'default.asp?pg=Contact Us', null]
	],
	[wrap_root('Members'), null, null,
		[wrap_child('Membership Benefits','arrow.gif'), 'default.asp?pg=Membership Benefits', null],
		[wrap_child('Become a Member','arrow.gif'), 'default.asp?pg=Become a Member', null],
		[wrap_child('Our Members','arrow.gif'), 'default.asp?pg=Our Members', null],
		[wrap_child('Members Area','arrow.gif'), 'default.asp?pg=Members Area', null]
	],
	[wrap_root('Workshops'), null, null,
		[wrap_child('Workshop','arrow.gif'), 'default.asp?pg=Workshop', null],
		[wrap_child('Professional Development Sessions','arrow.gif'), 'default.asp?pg=Professional Development Sessions', null]
	],
	[wrap_root('Events/Info'), null, null,
		[wrap_child('Linda Buchanan Award','arrow.gif'), 'default.asp?pg=Linda Buchanan Award', null],
		[wrap_child('Volunteer Booklet','arrow.gif'), 'default.asp?pg=Volunteer Booklet', null],
		[wrap_child('TB Volunteer Code','arrow.gif'), 'default.asp?pg=TB Volunteer Code', null],
		[wrap_child('National Volunteer Week','arrow.gif'), 'default.asp?pg=National Volunteer Week', null]
	],
	[wrap_root('Links'), 'default.asp?pg=Links', null]
];
function wrap_child (text) {
	return '&nbsp;&nbsp;' + text + '&nbsp;&nbsp;';
}
function wrap_root (text, c) {
var res = [];
for (var i in states)
res[i] = '<table cellpadding=0 cellspacing=0 border=0 width=90><tr><td valign=middle align=center class=m0' + states[i] + 'i width=100% height=18>&nbsp;&nbsp;' + text + '&nbsp;&nbsp;</td></tr></table>'
return res;
}

