var states = ['mout', 'mover', 'mdown'],
MENU_ITEMS0 = [
	[wrap_root('Home'), 'index.html', null],
	[wrap_root('About CARJ', 1), null, {'sw':86, 'bw':110},
		[wrap_child('About CARJ'), 'CARJ_about.html', null],
		[wrap_child('People in CARJ'), 'CARJ_people.html', null],
		[wrap_child('Carj prayer'), 'CARJ_carjprayer.html', null],
		[wrap_child('FAQ&#8217;s'), 'CARJ_faqs.html', null],
		[wrap_child('Projects'), null, {'sw':230, 'bw':150},
			[wrap_child('Travellers Network'), 'CARJ_projects_travellers.html', null],
			[wrap_child('Urban Network'), 'CARJ_projects_urban.html', null]
		],
	],
	[wrap_root('Changing Face of Britain', 1), null, {'sw':151, 'bw':220},
		[wrap_child('Changing Face of Britain programme'), 'CARJ_changingface.html', {'sw':230, 'bw':220},
			[wrap_child('Launch of CFB programme'), 'CARJ_cfblaunch.html', null],
			[wrap_child('CFB resources/publications'), 'CARJ_cfbresources.html', null],
			[wrap_child('CFB local events'), 'CARJ_events_local.html', null],
			[wrap_child('CFB national event'), 'CARJ_cfbnational.html', null],
			[wrap_child('Donate to the CFB special appeal'), 'CARJ_cfbdonate.html', null],
			[wrap_child('More information on 25th Anniversary'), 'CARJ_25thanniversary.html', null]
		]
	],
	[wrap_root('Events', 1), null, {'sw':58, 'bw':140},
		[wrap_child('Events/Meetings'), 'CARJ_events_carj.html', null],
		[wrap_child('Diocesan/Other Events'), 'CARJ_events_local.html', null]
	],
	[wrap_root('Young CARJ', 1), null, {'sw':89, 'bw':250},
		[wrap_child('Young CARJ'), 'CARJ_youngcarj.html', null],
		[wrap_child('CARJ Schools Projects'), 'CARJ_schoolsproject.html', null],
		[wrap_child('Young peoples forum for world citizenship'), 'CARJ_youngforum.html', null]
	],
	[wrap_root('Racial Justice Sunday', 1), 'CARJ_rjs.html', {'sw':139}],
	[wrap_root('Publications', 1), null, {'sw':87, 'bw':140},
		[wrap_child('CARJ publications'), 'CARJ_publications.html', null],
		[wrap_child('Other publications'), 'CARJ_other_publications.html', null],
		[wrap_child('Audio visual'), 'CARJ_audiovisual.html', null]
	],
	[wrap_root('Countering extremism', 1), 'CARJ_extremism.html', {'sw':145}],
	[wrap_root('Contact us', 1), 'CARJ_contactus.html', {'sw':79}],
]

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=3 cellspacing=0 border=0 width=100%><tr>' + (c ? '' : '') + '<td valign=middle align=center class=m0' + states[i] + 'i width=100% height=14>' + text + '</td></tr></table>'
	return res;
}





