﻿var states = ['mout', 'mover', 'mdown'],
MENU_ITEMS0 = [
	[wrap_root('Home'), 'index.html',{'sw':64, 'bw':120}, 
		
	],
	[wrap_root('Sports', 1), null, {'sw':64, 'bw':150},
		[wrap_child('Plex Indoor Sports'), 'http://www.staarsolutions.com/plexsandhills.html', null,],
		[wrap_child('Plex Ice'), 'http://www.staarsolutions.com/plexice.html', null,],
		[wrap_child('Boomtown Sports'), 'http://www.staarsolutions.com/boomtown.html', null,],
		[wrap_child('University of Missouri'), 'http://www.staarsolutions.com/missouri.html'],
		[wrap_child('USIndoor Soccer'), 'http://www.staarsolutions.com/usindoor.html'],
		
	],
	[wrap_root('Training', 1), null, {'sw':64, 'bw':134},
		[wrap_child('Consulting'), null, {'bw':160},],
		[wrap_child('Conferences'), 'http://www.staarsolutions.com/conferences.html', {'bw':160},],
		[wrap_child('Sponsorship Links'), 'http://www.staarsolutions.com/sponsorlinks.html', {'bw':160},],
		[wrap_child('Articles'), 'http://www.staarsolutions.com/articles.html', {'bw':160},],
		[wrap_child('STAAR Blog'), null, {'bw':160},],
	
	],
	[wrap_root('Trade Show/Arts', 1), null, {'sw':120, 'bw':154},
		[wrap_child('DFEST'), 'http://www.staarsolutions.com/dfest.html', {'bw':200},],
		[wrap_child('OKC Int. MADA Auto Show'), 'http://www.staarsolutions.com/autoshow.html', {'bw':200},],
		
	
	],
	
	[wrap_root('Air Show', 1), null, {'sw':64, 'bw':124},
		[wrap_child('2010 Air Show'), 'http://www.staarsolutions.com/airshow.html', {'bw':124},],
	
	],
	
	[wrap_root('Recreation/Aquatics', 1), null, {'sw':64, 'bw':164},
		[wrap_child('Mizzou Rec Aquatic Center'), 'http://www.staarsolutions.com/mizzourec.html', {'bw':160},
			[wrap_child('USA Swimming Grand Prix'), 'http://www.staarsolutions.com/grandprix.html', {'bw':160},],
			[wrap_child('Big 12 Swimming & Diving'), 'http://www.staarsolutions.com/swimmingdiving.html', {'bw':160},]
			],
		[wrap_child('Plex Indoor Sports'), 'http://www.staarsolutions.com/plexsandhills.html', {'bw':160},],
		[wrap_child('Plex Ice'), 'http://www.staarsolutions.com/plexice.html', null,],
		[wrap_child('Boomtown Sports'), 'http://www.staarsolutions.com/boomtown.html', {'bw':160},],
		[wrap_child('USIndoor Soccer'), 'http://www.staarsolutions.com/usindoor.html'],
	
	],
]











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;
}
