// menu_items.js file

function wrap_grn (text) {
	return '<span style="color: #333366;"><u>' + text + '</u></span>';
}
function wrap_org (text) {
	return '<span style="color: white;"><u>' + text + '</u></span> ';
}

var MENU_ITEMS = [
// level 0 item 0
["xx", null, [70, 64, 0, 18]],
// level 0 item 1
	["Who we are", "index.htm",[0, 0, 130, 18]],


	["Firm Profile", "profile.htm", null],
	[[ wrap_grn('Services'),
		wrap_org('Services'),
		wrap_org('Services')
	], null, null,
	    ["Company/commercial", "company.htm", null],
		["IT/IP", "it.htm", null],
		["Property", "property.htm", null],
		["Family, wills and probate", "family.htm", null]
	],	
	["People", null, null,
		["Partners", "partners.htm", null],
		["Consultants", "consultants.htm", null],
		["Assistant Solicitors", "assistants.htm", null],
		["Conveyancing Team", "conveyancing.htm", null],
		["Trainee Solicitors", "trainees.htm", null]		
	],
	["Contact", "contact.htm", [130, 0, 104, 18]]
];






