var states = ['mout', 'mover', 'mdown'],
MENU_ITEMS0 = [
	[wrap_root('Home', 1), 'index.html', 
	],
	[wrap_root('Consulting', 1), 'consulting.html',,
		[wrap_child('Expertise', 2), 'consulting_expertise.html',],
		[wrap_child('Solutions', 2), 'consulting_solutions.html',],
		[wrap_child('Impact', 2), 'consulting_impact.html',],
		[wrap_child('Clients', 2), 'consulting_clients.html',],
		[wrap_child_lst('Team', 2), 'consulting_team.html',]
	],
	[wrap_root('Coaching', 1), 'coaching.html',
	],
	[wrap_root('Speaking', 1), 'speaking.html',,
		[wrap_child("Howard's Keynotes",2), 'howards_keynotes.html',],
		[wrap_child('Testimonials',2), 'speaking_testimonials.html',],
		[wrap_child_lst('Clients',2), 'speaking_clients.html',]
	],
	[wrap_root('The Book', 1), 'the_book.html',,
		[wrap_child('Table of Contents',2), 'table_contents.html',],
		[wrap_child('The Four Cornerstones',2), 'four_cornerstones.html',],
		[wrap_child('Excerpts',2), 'book_excerpts.html',],
		[wrap_child('Graphics',2), 'book_graphics.html',],
		[wrap_child_lst('Publishers Information',2), 'publishers_information.html',]
	],
	[wrap_root('About Howard', 1), 'about_howard.html', ],
	[wrap_root('Get Certified', 1), 'get_certified.html', ],
	[wrap_root('Press Room', 1), 'press_room.html',,
		[wrap_child('Data Sheet',2), 'data_sheet.html',],
		[wrap_child('Articles',2), 'articles.html',],
		[wrap_child_lst('Interview Q &amp; A',2), 'interview_qa.html',]
	],
	[wrap_root('Newsletter', 1), 'newsletter.html',,
		[wrap_child_lst('Register Now',2), 'register_now.html',]
	],
	[wrap_root_last('Contact', 1), 'contact.html',
	]
]

function wrap_child (text, c) {
	var res = [];
	for (var i in states)
		res[i] = '<table cellpadding=0 cellspacing=0 border=0 width=100%><tr> <td width=5 height=20 bgcolor="#F4E195"><img src="img/pixel.gif" width="5" height="20"></td><td bgcolor="#F4E195" valign=middle align=left class=m0' + states[i] + 'i width=140 height=20>' + text + '</td></tr><tr><td height=4 bgcolor="#F4E195"><img src="img/pixel.gif" width="5" height="3"></td><td height=4 bgcolor="#F4E195"><img src="img/short_dots_1.gif" width="73" height="3"></td></tr></table>'
	return res;
}

function wrap_child_lst (text, c) {
	var res = [];
	for (var i in states)
		res[i] = '<table cellpadding=0 cellspacing=0 border=0 width=100%><tr><td width=5 height=20 bgcolor="#F4E195"><img src="img/pixel.gif" width="5" height="20"></td><td bgcolor="#F4E195" valign=middle align=left class=m0' + states[i] + 'i width=140 height=20>' + text + '</td></tr><tr><td height=4><img src="img/pixel.gif" width="5" height="3"></td><td height=4 background="img/invis.gif"><img src="img/invis.gif" width="73" height="3"></td></tr></table>'
	return res;
}

function wrap_root_current (text, c) {
	var res = [];
	for (var i in states)
		res[i] = '<table cellpadding=0 cellspacing=0 border=0 width=100%><tr>' + (c ? '<td><img src="img/arrow_sm.gif" width="10" height="19"> </td>' : '') + '<td valign=middle align=left class=m0' + states[i] + 'i width=100% height=19>' + text + '</td></tr><tr><td></td><td><img src="img/dot.gif" width="145" height="5"></td></tr></table>'
	return res;
}

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><img src="img/arrow_none.gif" width="10" height="19"> </td>' : '') + '<td valign=middle align=left class=m0' + states[i] + 'i width=100% height=19>' + text + '</td></tr><tr><td></td><td><img src="img/dot.gif" width="145" height="5"></td></tr></table>'
	return res;
}

function wrap_root_current_last (text, c) {
	var res = [];
	for (var i in states)
		res[i] = '<table cellpadding=0 cellspacing=0 border=0 width=100%><tr>' + (c ? '<td><img src="img/arrow_sm.gif" width="10" height="19"> </td>' : '') + '<td valign=middle align=left class=m0' + states[i] + 'i width=100% height=19>' + text + '</td></tr><tr><td></td><td></td></tr></table>'
	return res;
}

function wrap_root_last (text, c) {
	var res = [];
	for (var i in states)
		res[i] = '<table cellpadding=0 cellspacing=0 border=0 width=100%><tr>' + (c ? '<td><img src="img/arrow_none.gif" width="10" height="19"> </td>' : '') + '<td valign=middle align=left class=m0' + states[i] + 'i width=100% height=19>' + text + '</td></tr><tr><td></td><td></td></tr></table>'
	return res;
}
