var states = ['mout', 'mover', 'mdown'],
MENU_ITEMS0 = [
	[wrap_root('profile'), 'http://www.kgdarchitects.com/KGD_PROFILE.htm', null,
		[wrap_child('philosophy'), 'http://www.kgdarchitects.com/KGD_PHILOSOPHY.htm', null],
		[wrap_child('our team'), 'http://www.kgdarchitects.com/KGD_TEAM_TEMPLATE.aspx', null],
		[wrap_child('services'), 'http://www.kgdarchitects.com/KGD_SERVICES.htm', null]
	],	
	
	[wrap_root('portfolio', 1), 'http://www.kgdarchitects.com/KGD_PORTFOLIO.htm', {'sw':80},
		[wrap_child('education'), 'http://www.kgdarchitects.com/KGD_EDUCATION.htm',null],
		[wrap_child('community'), 'http://www.kgdarchitects.com/KGD_COMMUNITY.htm', null],
		[wrap_child('commercial'), 'http://www.kgdarchitects.com/KGD_COMMERCIAL.htm', null],
		[wrap_child('municipal'), 'http://www.kgdarchitects.com/KGD_MUNICIPAL.htm', null],
		[wrap_child('religious'), 'http://www.kgdarchitects.com/KGD_RELIGIOUS.htm', null],
		[wrap_child('housing'), 'http://www.kgdarchitects.com/KGD_HOUSING.htm', null]
	],	
	
	
	[wrap_root('news', 1), 'http://www.kgdarchitects.com/KGD_NEWS_TEMPLATE.aspx', {'sw':65},
		[wrap_child('accolades'), 'http://www.kgdarchitects.com/KGD_ACCOLADES_TEMPLATE.aspx', null]
    ],
	
	
	[wrap_root('careers'), 'http://www.kgdarchitects.com/KGD_CAREERS.htm', null
    ],
	
	
	[wrap_root('contact', 1), 'http://www.kgdarchitects.com/KGDCONTACT.asp', {'sw':60,'bw':110},
		[wrap_child('site map'), 'http://www.kgdarchitects.com/KGD_SITE_MAP.htm', null],	
		[wrap_child('privacy policy'), 'http://www.kgdarchitects.com/KGD_PRIV_POLICY.htm', 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=left class=m0' + states[i] + 'i width=100% height=18>&nbsp;&nbsp;' + text + '&nbsp;&nbsp;</td></tr></table>'
	return res;
}