var HOR_MENU_ITEMS =[
	[wrap_red("Bulletins"), "","",
		[wrap_item("Monday Prayer"), "http://www.pres-net.com/faithandservice/campus-ministry/monday-morning-prayers/mon-prayer.pdf"],
		[wrap_item("Daily"), "http://www.pres-net.com/bulletins/daily-bulletin.html"],
		[wrap_item("Weekly"), "http://www.pres-net.com/bulletins/weekly-bulletin.html"],
		[wrap_item("Special"), "http://www.pres-net.com/bulletins/special-bulletin.html"],
		[wrap_item("Monthly"), "http://www.pres-net.com/publications/thelantern.html"],
		[wrap_item("Athletic Events"), "http://www.pres-net.com/athletics/WeeklyAthleticEvents.pdf"],
			],

[wrap_red("Calendar"), "http://main-calendar.presentation.intand.com"],
	[wrap_red("Events"),"http://www.pres-net.com/aboutpres/events.html"],
	[wrap_red("&nbsp;&nbsp;ParentConnect&nbsp;&nbsp;"),"https://parentconnect.pres-net1.com/"],
	[wrap_red("Web E-mail"), "https://webmail.pres-net.com/exchweb/bin/auth/owalogon.asp?url=https://webmail.pres-net.com/exchange&reason=0"],
	[wrap_red("Contact Us"), "http://www.pres-net.com/aboutpres/contact-us.html"],
	[wrap_red("Site Map"), "http://www.pres-net.com/site-map.html"],

];

function wrap_red (text) {
	return [['<table cellpadding="0" cellspacing="0" border="0"><tr><td><img src="http://www.pres-net.com/menu_files/red_l.gif" width="1" height="24" border="0"></td><td background="http://www.pres-net.com/menu_files/red_m.gif" align="center" width="100%"><span style="font-face: tahoma, verdana, arial; font-size: 11px; color: #FFFFFF">',text,'</span></td><td><img src="http://www.pres-net.com/menu_files/red_r.gif" width="1" height="24" border="0"></td></tr></table>'].join(''),
		['<table cellpadding="0" cellspacing="0" border="0" bgcolor="#203c65"><tr><td><img src="http://www.pres-net.com/menu_files/pixel.gif" width="1" height="24" border="0"></td><td align="center" width="100%"><span style="font-face: tahoma, verdana, arial; font-size: 11px; color: #FFFFFF">',text,'</span></td><td><img src="http://www.pres-net.com/menu_files/pixel.gif" width="1" height="24" border="0"></td></tr></table>'].join(''),
		['<table cellpadding="0" cellspacing="0" border="0" bgcolor="#203c65"><tr><td><img src="http://www.pres-net.com/menu_files/pixel.gif" width="1" height="24" border="0"></td><td align="center" width="100%"><span style="font-face: tahoma, verdana, arial; font-size: 11px; color: #FFFFFF">',text,'</span></td><td><img src="http://www.pres-net.com/menu_files/pixel.gif" width="1" height="24" border="0"></td></tr></table>'].join('')];
}
function wrap_item (text, icon) {
	return [['<table cellpadding="3" cellspacing="0" border="0"><tr><td><img src="http://www.pres-net.com/menu_files/pixel.gif" width="7" height="12" border="0"></td><td width="100%"><span style="font-face: tahoma, verdana, arial; font-size: 11px; color: #000000">',text,'</span></td><td><img src="http://www.pres-net.com/menu_files/', (icon?'arrow_r':'pixel'), '.gif" width="7" height="7" border="0"></td></tr></table>'].join(''),
		['<table cellpadding="3" cellspacing="0" border="0" bgcolor="3e66a9"><tr><td><img src="http://www.pres-net.com/menu_files/pixel.gif" width="7" height="12" border="0"></td><td width="100%"><span style="font-face: tahoma, verdana, arial; font-size: 11px; color: #FFFFFF">',text,'</span></td><td><img src="http://www.pres-net.com/menu_files/', (icon?'arrow_w':'pixel'), '.gif" width="7" height="7" border="0"></td></tr></table>'].join(''),
		['<table cellpadding="3" cellspacing="0" border="0" bgcolor="3e66a9"><tr><td><img src="http://www.pres-net.com/menu_files/pixel.gif" width="7" height="12" border="0"></td><td width="100%"><span style="font-face: tahoma, verdana, arial; font-size: 11px; color: #FFFFFF">',text,'</span></td><td><img src="http://www.pres-net.com/menu_files/', (icon?'arrow_w':'pixel'), '.gif" width="7" height="7" border="0"></td></tr></table>'].join('')];
}
function wrap_separated (text, icon) {
	var result = wrap_item(text, icon);
	for (var idx = 0; idx < result.length; idx++)
		result[idx] = '<table cellpadding="0" cellspacing="0" border="0" width="100%"><tr><td bgcolor="#808080"><img src="http://www.pres-net.com/menu_files/pixel.gif" width="1" height="1" border="0"></td></tr></table>' + result[idx];
	return result;
}