var MENU_ITEMS_XP = [
	[wrap_root('&#8226; Home Page &#8226;'), 'default.asp', null],
	[wrap_root('&#8226; Information &#8226;'), null, null,
		[wrap_child('About Camp Firefly','arrow.gif'), 'default.asp?pg=About Camp Firefly', null],
		[wrap_child('Location and Facilities','arrow.gif'), 'default.asp?pg=Location and Facilities', null],
		[wrap_child('Who Can Attend?','arrow.gif'), 'default.asp?pg=Who Can Attend?', null],
		[wrap_child('Camp Activities','arrow.gif'), 'default.asp?pg=Camp Activities', null],
		[wrap_child('Health Care','arrow.gif'), 'default.asp?pg=Health Care', null],
		[wrap_child('Donations','arrow.gif'), 'default.asp?pg=Donations', null],
		[wrap_child('How to Volunteer','arrow.gif'), 'default.asp?pg=How to Volunteer', null]
	],
	[wrap_root('&#8226; Registration &#8226;'), null, null,
		[wrap_child('Registration Forms','arrow.gif'), 'default.asp?pg=Registration Forms', null],
		[wrap_child('What to Bring','arrow.gif'), 'default.asp?pg=What to Bring', null]
	],
	[wrap_root('&#8226; Photo Gallery &#8226;'), null, null,
		[wrap_child('Loon Lake 2008','arrow.gif'), 'default.asp?pg=Loon Lake 2008', null],
		[wrap_child('Loon Lake 2007','arrow.gif'), 'default.asp?pg=Loon Lake 2007', null],
		[wrap_child('Loon Lake 2006','arrow.gif'), 'default.asp?pg=Loon Lake 2006', null],
		[wrap_child('Kingfisher 2005','arrow.gif'), 'default.asp?pg=Kingfisher 2005', null]
	],
	[wrap_root('&#8226; Resources &#8226;'), 'default.asp?pg=Resources', null],
	[wrap_root('&#8226; Contact Us &#8226;'), 'default.asp?pg=Contact Us', null]
];
function wrap_parent (text,icon) {
	return [
	'<table cellpadding=1 cellspacing=0 border=0 width=100% ><tr><td><table cellpadding=0 cellspacing=0 border=0 width=100% height=21><tr><td width=100% class=a0 align="center">&nbsp; ' + text + ' &nbsp;</td></tr></table></td></tr></table>',
	'<table cellpadding=1 cellspacing=0 border=0 width=100% bgcolor=#FF9933><tr><td><table cellpadding=0 cellspacing=0 border=0 width=100% height=21><tr><td width=100% class=a1 align="center">&nbsp; ' + text + ' &nbsp;</td></tr></table></td></tr></table>',
	'<table cellpadding=1 cellspacing=0 border=0 width=100% bgcolor=#FF9933><tr><td><table cellpadding=0 cellspacing=0 border=0 width=100% height=21><tr><td width=100% class=a1 align="center">&nbsp; ' + text + ' &nbsp;</td></tr></table></td></tr></table>'
	];
}
function wrap_child (text,icon) {
	return [
	['<table cellpadding=1 cellspacing=0 border=0 width=100% ><tr><td bgcolor=#006633><img height=16 src=', icon !=null ? 'images/' + icon: 'menu_files/pixel.gif width=15', ' hspace=3></td><td width=100% ><table cellpadding=1 cellspacing=0 border=0 width=100% height=22><tr><td class=a0>&nbsp; ', text, '</td></tr></table></td></tr></table>'].join(''),
	['<table cellpadding=1 cellspacing=0 border=0 width=100% bgcolor=#996600><tr><td><table cellpadding=1 cellspacing=0 border=0 width=100% height=22 bgcolor=#996600><tr><td><img height=16 src=', icon !=null ? 'images/' + icon: 'menu_files/pixel.gif width=16', ' hspace=3></td><td width=99% class=a0>&nbsp; ', text, '</td></tr></table></td></tr></table>'].join(''),
	['<table cellpadding=1 cellspacing=0 border=0 width=100% bgcolor=#996600><tr><td><table cellpadding=1 cellspacing=0 border=0 width=100% height=22 bgcolor=#FF9933><tr><td><img height=16 src=', icon !=null ? 'images/' + icon: 'menu_files/pixel.gif width=16', ' hspace=3></td><td width=99% class=a0>&nbsp; ', text, '</td></tr></table></td></tr></table>'].join('')
	];
}
function wrap_root (text) {
	return [
	'<table cellpadding=1 cellspacing=0 border=0 width=100% ><tr><td><table cellpadding=0 cellspacing=0 border=0 width=100% height=21><tr><td width=100% class=a0 align="center">&nbsp; ' + text + ' &nbsp;</td></tr></table></td></tr></table>',
	'<table cellpadding=1 cellspacing=0 border=0 width=100% bgcolor=#FF9933><tr><td><table cellpadding=0 cellspacing=0 border=0 width=100% height=21><tr><td width=100% class=a1 align="center">&nbsp; ' + text + ' &nbsp;</td></tr></table></td></tr></table>',
	'<table cellpadding=1 cellspacing=0 border=0 width=100% bgcolor=#996600><tr><td><table cellpadding=0 cellspacing=0 border=0 width=100% height=21><tr><td width=100% class=a1 align="center">&nbsp; ' + text + ' &nbsp;</td></tr></table></td></tr></table>'
	];
}

