var states = ['mout', 'mover', 'mdown'],
MENU_ITEMS0 = [
	[wrap_root('Cot & Crib Sets'), null, null, 
		[wrap_child('ABC Blocks'), 'abcblocks.html', null],
		[wrap_child('Noahs Ark'), 'noahsark.html', null],
		[wrap_child('Splashy Duck'), 'splashyduck.html', null],
		[wrap_child('Teddy Triplets'), 'teddytriplets.html', null]
	],
	[wrap_root('Blankets & Sheets'), 'blankets.html', null],
	[wrap_root('Curtains & Fabric'), 'sheets.html', null],
	[wrap_root('Accessories'), 'extras.html', null],
	[wrap_root('Bespoke Orders'), 'bespokeorders.html', null],
	[wrap_root('Your Shopping'), 'http://ww8.aitsafe.com/cf/review.cfm?userid=A015589&return=www.mercurywd.co.uk%2Fturquoise', null],

]

function wrap_child (text) {
	return '&nbsp;' + text + '&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>' + '<td valign=middle class=m0' + states[i] + 'i width=100% height=16>&nbsp;' + text + '&nbsp;</td></tr></table>'
	return res;
}