var MENU_ITEMS_XP = [
	[wrap_root('<img src="images/arrow.gif"> Home Page'), 'default.asp', null],
	[wrap_root('<img src="images/arrow.gif"> Calendar of Events'), 'default.asp?pg=Calendar of Events', null],
	[wrap_root('<img src="images/arrow.gif"> Syllabus'), 'default.asp?pg=Syllabus', null],
	[wrap_root('<img src="images/arrow.gif"> Programs'), 'default.asp?pg=Programs', null],
	[wrap_root('<img src="images/arrow.gif"> Adjudicators'), 'default.asp?pg=Adjudicators', null],
	[wrap_root('<img src="images/arrow.gif"> Scholarships and Awards'), 'default.asp?pg=Scholarships and Awards', null],
	[wrap_root('<img src="images/arrow.gif"> Photo Gallery'), 'default.asp?pg=Photo Gallery', null],
	[wrap_root('<img src="images/arrow.gif"> Results'), 'default.asp?pg=Results', null],
	[wrap_root('<img src="images/arrow.gif"> Newsletter'), 'default.asp?pg=Newsletter', null],
	[wrap_root('<img src="images/arrow.gif"> Forms'), 'default.asp?pg=Forms', null],
	[wrap_root('<img src="images/arrow.gif"> Contact Us'), '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=menu_default >&nbsp; ' + text + ' &nbsp;</td></tr></table></td></tr></table>',
	'<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=menu_hover >&nbsp; ' + text + ' &nbsp;</td></tr></table></td></tr></table>',
	'<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=menu_clicked >&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><img height=12 src=', icon !=null ? 'images/' + icon: 'menu_files/pixel.gif width=12', ' hspace=3></td><td width=100% ><table cellpadding=1 cellspacing=0 border=0 width=100% height=22><tr><td class=menusub_default >&nbsp; ', text, '</td></tr></table></td></tr></table>'].join(''),
	['<table cellpadding=1 cellspacing=0 border=0 width=100% ><tr><td><table cellpadding=1 cellspacing=0 border=0 width=100% height=22 bgcolor=#124A79><tr><td width=20><img height=12 src=', icon !=null ? 'images/' + icon: 'menu_files/pixel.gif width=12', ' hspace=3></td><td class=menusub_hover >&nbsp; ', text, '</td></tr></table></td></tr></table>'].join(''),
	['<table cellpadding=1 cellspacing=0 border=0 width=100% ><tr><td><table cellpadding=1 cellspacing=0 border=0 width=100% height=22 bgcolor=#388CC9><tr><td width=20><img height=12 src=', icon !=null ? 'images/' + icon: 'menu_files/pixel.gif width=12', ' hspace=3></td><td class=menusub_clicked >&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=menusub_default >&nbsp; ' + text + ' &nbsp;</td></tr></table></td></tr></table>',
'<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=menusub_hover >&nbsp; ' + text + ' &nbsp;</td></tr></table></td></tr></table>',
'<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=menusub_clicked >&nbsp; ' + text + ' &nbsp;</td></tr></table></td></tr></table>'
];
}
