var states = ['mout', 'mover', 'mdown'],
MENU_ITEMS0 = [
	[wrap_root('Home'), 'default.asp?pgid=150', null],
	[wrap_root('Treatments'), '#', null,
		[wrap_child('Weight Loss '), 'default.asp?pgid=176', null,
			[wrap_child('Superior WL'), 'default.asp?pgid=178', null],
			[wrap_child('HCG Diet'), 'default.asp?pgid=179', null]
	],
		[wrap_child('IonCleanse Foot Baths'), 'default.asp?pgid=154', null],
		[wrap_child('Far Infrared Sauna & Chi Machine'), 'default.asp?pgid=155', null],
		[wrap_child('Hyperbaric Oxygen (HBOT)'), 'default.asp?pgid=167', null],
		[wrap_child('Ozone Sauna Treatments'), 'default.asp?pgid=168', null],
		[wrap_child('Testimonials'), 'default.asp?pgid=156', null],
		[wrap_child('Why Cleanse?'), 'default.asp?pgid=158', null],
		[wrap_child('Overview of Treatments'), 'default.asp?pgid=152', null]
	],
	[wrap_root('Events'), '#', null,
		[wrap_child('Upcoming Events'), 'default.asp?pgid=169', null],
		[wrap_child('Past Events '), 'default.asp?pgid=172', null],
		[wrap_child('Employee Wellness'), 'default.asp?pgid=173', null]
	],
	[wrap_root('Gifts & Equipment'), '#', null,
		[wrap_child('Gift Ideas'), 'default.asp?pgid=160', null],
		[wrap_child('Healing Equipment'), 'default.asp?pgid=165', null],
		[wrap_child('Payment Plan Options'), 'default.asp?pgid=174', null]
	],
	[wrap_root('Photos'), '#', null,
		[wrap_child('Foot Bath Treatments'), 'default.asp?pgid=162', null],
		[wrap_child('Before/After Photos'), 'default.asp?pgid=180', null]
	],
	[wrap_root('Contact Info & Hours'), '#', null,
		[wrap_child('Hours & Locations '), 'default.asp?pgid=164', null]
	]
]
function wrap_child (text) {
return '<table cellpadding=0 height=26 cellspacing=0 border=0 width=98% align=center><tr><td height=26 valign=middle width=100% >&nbsp;<img src="menu_files/arrownew.gif">&nbsp;' + text + '&nbsp;&nbsp;</td></tr></table>';
}
function wrap_root (text, c) {
var res = [];
for (var i in states)
res[i] = '<table cellpadding=0 height=26 cellspacing=0 border=0 width=98% align=center><tr>' + (c ? '<td height=26><font color=white>|</font></td>' : '') + '<td height=26 valign=middle class=m0' + states[i] + 'i width=100% >&nbsp;<img src="menu_files/arrownew.gif">&nbsp;' + text + '&nbsp;&nbsp;</td></tr></table>'
return res;
}
