var MENU_ITEMS_XP = [
	[wrap_root('<span style="color: #000000;">Go to:</span>'), '#', {'sw' : 50}, 
	],
	[wrap_root('About Us'), '#', {'sw' : 68}, 
		[wrap_child('Mission Statement'), '/about/mission.asp', null],
		[wrap_child('Bylaws'), '/about/bylaws.asp', null],
		[wrap_child('Officers & Board Members'), '/about/board.asp', null],
		[wrap_child('Meeting Documents'), '/about/mtgdocs.asp', null],
		[wrap_child('Contact Us'), 'contact.asp', null],
	],
	[wrap_root('Political Education'), '#', {'sw' : 124}, 
		[wrap_child('E-mails to 700,000 Supporters'), 'http://www.8020politicalpower.blogspot.com', null],
		[wrap_child('Questionnaire to Presidential Candidate'), '/politicaledu/obamareply.asp', null],						[wrap_child('Poster Board/ Reader Reactions'), '/politicaledu/posterboard.asp', null],
	],
	[wrap_root('Projects'), '#', {'sw' : 65},
		[wrap_parent('Win Equal Opportunity At Work'), '#', null,
			[wrap_child('Washington Post ad'), '/projects/equalopp_washingtonpost.asp', null],
		],
		[wrap_parent('Fight Discrimination'), '#', null,
			[wrap_child('Discrimination Watch'), '/projects/discrimination_watch.asp', null],
			[wrap_child('Protecting Asian American political candidates from racist attacks'), '/projects/discrimination_candidates.asp', null],
			[wrap_child('What you need to do when facing discrimination at work'), '/projects/discrimination_atwork.asp', null],
		],
	],
	[wrap_root('Donations'), '#', {'sw' : 80},
			[wrap_child('Top Donors'), '/donate/topdonors.asp'],
			[wrap_child('Unusual Tax-Exempt Donations'), '/donate/types.asp'],
			[wrap_child('Donate'), '/donate/donate.asp'],
			[wrap_child('Awards & Recognitions'), '/donate/awards.asp'],
			[wrap_child('Email List'), '/donate/emaillist.asp'],
	],				
	[wrap_root('FAQ'), '../faq.asp', {'sw' : 45},

	],
]; 

function wrap_parent (text,icon) {
	return [
	['<table cellpadding=0 cellspacing=0 border=0 width=100%><tr><td width=100%><table cellpadding=0 cellspacing=0 border=0 width=100%><tr><td width=100% class=a1>&nbsp; ' + text + '</td><td><img src=/images/arr.gif align="middle" align=absmiddle hspace=3></td></tr></table></td></tr></table>'].join(''),
	['<table cellpadding=0 cellspacing=0 border=0 width=100%><tr><td width=100%><table cellpadding=0 cellspacing=0 border=0 width=100%><tr><td width=100% class=a0>&nbsp; ' + text + '</td><td><img src=/images/arr.gif align="middle" align=absmiddle hspace=3></td></tr></table></td></tr></table>'].join(''),
	['<table cellpadding=0 cellspacing=0 border=0 width=100%><tr><td width=100%><table cellpadding=0 cellspacing=0 border=0 width=100%><tr><td width=100% class=a0>&nbsp; ' + text + '</td><td><img src=/images/arr.gif align="middle" align=absmiddle hspace=3></td></tr></table></td></tr></table>'].join('')
	];
}

function wrap_child (text,icon) {
	return [
	['<table cellpadding=0 cellspacing=0 border=0 width=100%><tr><td width=100%><table cellpadding=0 cellspacing=0 border=0 width=100%><tr><td width=100% class=a1>&nbsp; ' + text + '</td></tr></table></td></tr></table>'].join(''),
	['<table cellpadding=0 cellspacing=0 border=0 width=100%><tr><td width=100%><table cellpadding=0 cellspacing=0 border=0 width=100%><tr><td width=100% class=a0>&nbsp; ' + text + '</td></tr></table></td></tr></table>'].join(''),
	['<table cellpadding=0 cellspacing=0 border=0 width=100%><tr><td width=100%><table cellpadding=0 cellspacing=0 border=0 width=100%><tr><td width=100% class=a0>&nbsp; ' + text + '</td></tr></table></td></tr></table>'].join('')
	];
}

function wrap_root (text) {
	return [
	'<table cellpadding=0 cellspacing=0 border=0 width=100%><tr><td><table cellpadding=0 cellspacing=0 border=0 width=100%><tr><td width=100% class=a1 align="left">&nbsp; ' + text + ' &nbsp;</td></tr></table></td></tr></table>',
	'<table cellpadding=0 cellspacing=0 border=0 width=100%><tr><td><table cellpadding=0 cellspacing=0 border=0 width=100%><tr><td width=100% class=a0 align="left">&nbsp; ' + text + ' &nbsp;</td></tr></table></td></tr></table>',
	'<table cellpadding=0 cellspacing=0 border=0 width=100%><tr><td><table cellpadding=0 cellspacing=0 border=0 width=100%><tr><td width=100% class=a0 align="left">&nbsp; ' + text + ' &nbsp;</td></tr></table></td></tr></table>'
	];
}