

// Tree structure definition
var TREE2_NODES = [
	["Home", 'index.html', null, 
	],
	["About Us", 'aboutus.html', null,
		["Meet Our Architect", 'architect.html', null],
		["Meet Our Clients", 'clients.html', null]
	],
	["Services", 'services.html', null,
	],
	["Portfolio", 'portfolio.html', null,
		["Banks", 'portfolio.html', null],
		["Churches", 'portfolio.html#churches', null],
		["Educational", 'portfolio.html#educational', null],
		["Historic Renovation", 'portfolio.html#historic', null],
		["Housing", 'portfolio.html#housing', null],
		["Office Buildings", 'portfolio.html#office', null],
		["Retail", 'portfolio.html#retail', null],
		["Current Projects", 'portfolio.html#current', null]
	],
	["Links", 'links.html', null,
	],
	["In The News", 'news.html', null,
	],
	["Contact Us", 'contactus.html', null,
	],
];

with (new COOLjsTreePRO("tree2", TREE2_NODES, TREE2_FORMAT))
{
	init();
}