var MENU_ITEMS0 = [
	[wrap_root('Home'), 'http://www.naicip.com/index.asp', {'sw':88}],
	
	[wrap_root('Brokers'), 'http://www.naicip.com/brokers.asp', {'sw':95},
		[wrap_child('Alan K. Lacey'), 'http://www.naicip.com/BrokerBio_ALacey.asp'],
		[wrap_child('Cheryl Morse'), 'http://www.naicip.com/BrokerBio_CMorse.asp'],
		[wrap_child('David Sour'), 'http://www.naicip.com/BrokerBio_DSour.asp'],
		[wrap_child('Dean Janeff'), 'http://www.naicip.com/BrokerBio_DJaneff.asp'],
		[wrap_child('Derek Silva'), 'http://www.naicip.com/BrokerBio_DSilva.asp'],
		[wrap_child('Frank Niendorff'), 'http://www.naicip.com/BrokerBio_FNiendorff.asp'],
		[wrap_child('Fred Higgins'), 'http://www.naicip.com/BrokerBio_FHiggins.asp'],
		[wrap_child('Jerry Heare'), 'http://www.naicip.com/BrokerBio_JHeare.asp'],
		[wrap_child('Joyce Weedman'), 'http://www.naicip.com/BrokerBio_JWeedman.asp'],
		[wrap_child('Kurt VanderMeulen'), 'http://www.naicip.com/BrokerBio_KVandermeulen.asp'],
		[wrap_child('Mark Milstead'), 'http://www.naicip.com/BrokerBio_MMilstead.asp'],
		[wrap_child('Meredith Sloan'), 'http://www.naicip.com/BrokerBio_MSloan.asp'],
		[wrap_child('Monica Moore'), 'http://www.naicip.com/BrokerBio_MMoore.asp'],
		[wrap_child('Philip Bible'), 'http://www.naicip.com/BrokerBio_PBible.asp'],
		[wrap_child('Royce Lacey'), 'http://www.naicip.com/BrokerBio_RLacey.asp'],
		[wrap_child('Sherry Naquin Sanchez'), 'http://www.naicip.com/BrokerBio_SSanchez.asp'],
		[wrap_child('Travis Waldrop'), 'http://www.naicip.com/BrokerBio_TWaldrop.asp'],
	],
	
	[wrap_root('Property Listings'), 'http://www.naicip.com/Properties.asp', {'sw':150},
		/*[wrap_child_arrow('Detailed Property Info'), 'http://www.naicip.com/Detail_Property.asp', null,*/
			[wrap_child('Office Buildings'), 'http://www.naicip.com/Properties_OfficeBuilding.asp'],
			[wrap_child('Industrial Buildings'), 'http://www.naicip.com/Properties_IndustrialBuilding.asp'],
			[wrap_child('Retail Buildings'), 'http://www.naicip.com/Properties_RetailBuilding.asp'],
		[wrap_child('Commercial Buildings'), 'http://www.naicip.com/Properties_CommercialBuilding.asp'],
			[wrap_child_arrow('Land'), null, null,
				[wrap_child('Commercial'), 'http://www.naicip.com/Properties_LandCommercial.asp'],
				[wrap_child('Industrial'), 'http://www.naicip.com/Properties_LandIndustrial.asp'],
				[wrap_child('Mixed Use'), 'http://www.naicip.com/Properties_LandMixedUse.asp'],
				[wrap_child('Office'), 'http://www.naicip.com/Properties_LandOffice.asp'],
				[wrap_child('Retail'), 'http://www.naicip.com/Properties_LandRetail.asp'],
				[wrap_child('Residential'), 'http://www.naicip.com/Properties_LandResidential.asp'],
				[wrap_child('Single-Family'), 'http://www.naicip.com/Properties_LandSingleFamily.asp'],
				[wrap_child('Multi-Family'), 'http://www.naicip.com/Properties_LandMultiFamily.asp']
			]
		/*]*/

	],
	
	[wrap_root('Services'), 'http://www.naicip.com/Services.asp', {'sw':97},
		[wrap_child('Office'), 'http://www.naicip.com/Office.asp'],
		[wrap_child('Industrial'), 'http://www.naicip.com/Industrial.asp'],
		[wrap_child('Retail'), 'http://www.naicip.com/Retail.asp'],
		[wrap_child('Land'), 'http://www.naicip.com/Land.asp'],
		[wrap_child('Investment Property'), 'http://www.naicip.com/Investment.asp'],
		[wrap_child('Corporate Services'), 'http://www.naicip.com/corporateservices.asp']
	],
	
	[wrap_root('Market Information'), null, {'sw':157},
		[wrap_child('Market Reports'), 'http://www.naicip.com/Austin_Market.asp'],
		[wrap_child('Resources'), 'http://www.naicip.com/resources.asp'],
		[wrap_child('Metro Area Information'), 'http://www.naicip.com/metro.asp'],
		[wrap_child('Information Subscription'), 'http://www.naicip.com/PropertySubscribe.asp']
	],
	
	[wrap_root('NAI'), 'http://www.naicip.com/NAI.asp', {'sw':60}]

]

function wrap_child (text) {
	var res=[];for (var i=0; i<3; i++)
		res[i]='<table border=0 cellspacing=0 cellpadding=0 width=100% height=18><tr><td width=100% bgcolor=#337534 class=a' + i + '>&nbsp;&nbsp;' + text + '<td width=27 bgcolor=#337534 class=a' + i + '>&nbsp;&nbsp;</td>' + '</td></tr></table>'
	return res;
}

function wrap_child_arrow (text) {
	var res=[];for (var i=0; i<3; i++)
		res[i]='<table border=0 cellspacing=0 cellpadding=0 width=100% height=18><tr><td width=100% bgcolor=#337534 class=a' + i + '>&nbsp;&nbsp;' + text + '<td width=27 bgcolor=#337534 class=a' + i + '>>&nbsp;&nbsp;</td>' + '</td></tr></table>'
	return res;
}

function wrap_root (text) {
	var res=[];for (var i=0; i<3; i++)
		res[i]='<table border=0 cellspacing=0 cellpadding=0 width=100% height=18><tr><td width=100% bgcolor=#CC0001 class=aa' + i + '>&nbsp;&nbsp;' + text + '</td></tr></table>'
	return res;
}