var states = ['mout', 'mover', 'mdown'],
MENU_ITEMS0 = [
	[wrap_root('Gallery', 1), 'prof_contact.html', null,
		[wrap_child('Contact'), 'prof_contact.html'],
	],
	[wrap_root('Artists', 1), 'art_collection.html', null,

	],
	[wrap_root('Exhibitions', 1), 'ex_current.html', null,
		[wrap_child('Current'), 'ex_current.html'],
		[wrap_child('Archive'), 'ex_archive.html'],
			],
	[wrap_root('Art Fairs', 1), 'fair_upcoming.html', null,
			 [wrap_child('Current'), 'fair_upcoming.html'],
			 [wrap_child('Past'), 'fairs.html'],
			],
	[wrap_root('Consulting', 1), 'cons_contemporary.html', null,
		
	],
	[wrap_root('Publications', 1), 'publications.html', null,
	
	],
]

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