var states = ['mout', 'mover', 'mdown'],

MENU_ITEMS0 = [

	[wrap_root('HOME'), 'http://www.stoughtondojo.com', {'sw':'50'}], 

	[wrap_root('SHOHEI / UECHI &nbsp;<img src="menu_files/0darrow.gif" height=16 width=15 align="absmiddle">&nbsp;'), 'http://www.stoughtondojo.com/shohei_landing.html',{'sw':'70'},
		[wrap_child('Shohei / Uechi'), 'http://www.stoughtondojo.com/urkd.html'],
		[wrap_child('Birth of Uechi Ryu Karate Do'), 'http://www.stoughtondojo.com/birth_of_urkd.html'],
		[wrap_child('Bibliography'), 'http://www.stoughtondojo.com/bib_birth_of_urkd.html'],
		[wrap_child('Branch Dojos'), 'http://www.stoughtondojo.com/association_dojos.html'],
],
	[wrap_root('OKINAWA AND KARATEDO'), 'http://www.stoughtondojo.com/oki.html',null],

	[wrap_root('DOJO &nbsp;<img src="menu_files/0darrow.gif" height=16 width=15 align="absmiddle">&nbsp;'), 'http://www.stoughtondojo.com/club.html',{'sw':64, 'bl': -70, 'bw':'134'},

		[wrap_child('Okinawan Karate Club'), 'http://www.stoughtondojo.com/club.html'],

		[wrap_child('Directions'), 'http://www.stoughtondojo.com/mapdirections.htm'],

		[wrap_child('News and Events'), 'http://www.stoughtondojo.com/news.html']

],
	[wrap_root('SCHEDULE &nbsp;<img src="menu_files/0darrow.gif" height=16 width=15 align="absmiddle">&nbsp;'), 'http://www.stoughtondojo.com/schedulemain.html',{'sw':'90'},
		[wrap_child('Summer Schedule'), 'http://www.stoughtondojo.com/schedulesummer.html'],
		[wrap_child('Fall Winter Schedule'), 'http://www.stoughtondojo.com/schedulewinter.html'],
		[wrap_child('Womens Self Defense Classes'), 'http://www.stoughtondojo.com/news.html']
],

	[wrap_root('STAFF'), 'http://www.stoughtondojo.com/staff.html',{'sw':54, 'bl': -70, 'bw':'120'}],

	[wrap_root('STUDENTS &nbsp;<img src="menu_files/0darrow.gif" height=16 width=15 align="absmiddle">&nbsp;'), 'http://www.stoughtondojo.com/students.html', {'sw':'90'},

		[wrap_child('Main Page'), 'http://www.stoughtondojo.com/students.html'],,

		[wrap_child('Photo Gallery'), 'http://www.stoughtondojo.com/photo_gallery.html'],

		[wrap_child('Kata / Kumite Pages'), 'http://www.stoughtondojo.com/katamain.html'],
		
		[wrap_child('Belt Test Home'), 'http://www.stoughtondojo.com/belt_test_home.htm'],

		[wrap_child('Tips Archives'), 'http://www.stoughtondojo.com/tips_archives.html'],

		[wrap_child('History, Traditions and Stories'), 'http://www.stoughtondojo.com/other.html'],

		[wrap_child('Kids Pages'), 'http://www.stoughtondojo.com/kids - pages home.htm'],

		[wrap_child('Dojo Rules'), 'http://www.stoughtondojo.com/dojo_rules.html'],

		[wrap_child('Black Belt Essays'), 'http://www.stoughtondojo.com/black_belt_essays.htm'],

		[wrap_child('Joe Hurley Memorial Award'), 'http://www.stoughtondojo.com/joe_hurley_award_2006.htm'],

		[wrap_child('One Students View Point'), 'http://www.stoughtondojo.com/students_view_point.htm']



	]
,
	[wrap_root('LINKS'), 'http://www.stoughtondojo.com/links.html', {'sw':'70'}],

	[wrap_root('CONTACT US&nbsp;<img src="menu_files/0darrow.gif" height=16 width=15 align="absmiddle">&nbsp;'), null, {'sw':'100'},
		[wrap_child('Telephone: 781-341-1382'), null],

		[wrap_child('Address: 45C Tosca Drive, Stoughton, MA 02072'), 'http://www.stoughtondojo.com/mapdirections.htm'],

		[wrap_child('Email'), 'mailto:stodojo@aol.com']

]
]


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=100%><tr>' + (c ? '<td><font color=white>|</font></td>' : '') + '<td valign=middle align=center class=m0' + states[i] + 'i width=100% height=18>&nbsp;&nbsp;' + text + '&nbsp;&nbsp;</td></tr></table>'

	return res;

}