var states = ['mout', 'mover', 'mdown'],
MENU_ITEMS0 = [
	[wrap_root('Meeting Minutes'), 'meeting-minutes.php'
	],
	[wrap_root('Association Forms'), 'forms.php'
	],
<!--	[wrap_root('Discussion Room'), 'index.php'
	], -->
	[wrap_root('Real Estate Agents'), 'real-estate-agents.php'
	],
	[wrap_root('Mortgage Brokers'), 'mortgage-brokers.php'
	],
	[wrap_root('Local Businesses'), 'professional-services.php'
	],
	[wrap_root('Local Links'), 'local-links.php'
	],
	[wrap_root('WWW Links'), 'world-wide-web-links.php'
	],
	[wrap_root('Calendar'), 'calendar.php'
	],
	[wrap_root('Google Maps'), 'map.php'
	],
	[wrap_root('Social Events'), 'social.php'
	],
	[wrap_root('Computer Security'), 'computer-security.php'
	],
	[wrap_root('Contact Information'), 'contact.php'
	],
	[wrap_root('Home'), 'default.php'
	]
]

MENU_ITEMS1 = [
	[wrap_root('Banks'), 'banks.php', {'sw':60},
	],
	[wrap_root('Home Improvements'), 'home-repair.php', {'sw':165},
		[wrap_child('General Contractors'), 'general-contractors.php'],
		[wrap_child('House Cleaners'), 'house-cleaners.php'],
		[wrap_child('Cleaning Products'), 'cleaning-products.php'],
		[wrap_child('Plumbers'), 'plumbers.php'],
		[wrap_child('HVAC'), 'hvac.php'],
		[wrap_child('Locksmiths'), 'locksmiths.php'],
		[wrap_child('Decorators'), 'decorators.php'],
		[wrap_child('Landscaping'), 'landscaping.php'],
		[wrap_child('Movers'), 'movers.php']
	],
	[wrap_root('Home Security'), 'home-security.php', {'sw':125},
	],
	[wrap_root('Lawyers'), 'lawyers.php', {'sw':75},
	],
	[wrap_root('Insurance'), 'insurance.php', {'sw':75},
	],
	[wrap_root('Accountants'), 'accountants.php', {'sw':105},
	],
]

MENU_ITEMS2 = [
	[wrap_root('Retailers'), 'retailers.php', {'sw':77},
	],
	[wrap_root('Automotive'), null, {'bw':125},
		[wrap_child('Auto Dealers'), 'auto-dealers.php'],
		[wrap_child('Auto Parts'), 'auto-parts.php'],
		[wrap_child('Exhaust'), 'exhaust.php'],
		[wrap_child('Body Shops'), 'body-shops.php'],
		[wrap_child('Oil Service'), 'oil-service.php'],
		[wrap_child('General Repair'), 'general-repair.php'],
		[wrap_child('Towing'), 'towing.php']
	],
	[wrap_root('Childhood Development'), 'child-development.php', {'sw':175},
	],
	[wrap_root('Restaurants'), 'restaurants.php'
	],
	[wrap_root('General Services'), 'general-services.php', {'sw':135},
	],
]

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 height=18 align=left class=m0' + states[i] + 'i width=100%>&nbsp;&nbsp;' + text + '&nbsp;&nbsp;</td></tr></table>'
	return res;
}
