/* 

- if you going to wrap items text into html it is better idea to write wrapper
	functions than repeating html in structure for items with similar formatting.
	function may look like:
		function wrap1 (text) { return ('<center>' + text + '</center>'); }
	then it may be used in structure like this:
		[wrap1('centered text'), 'http://...', null]
['visible text and formatting', 'url link', null]	
*/
function wrap0 (text){	return('<table valign=top><tr><td valign=top><img src="images/nav.tri.gif" width=20 height=20></td><td valign=top><b><span class=navlink>' + text + '</span></b></td></tr></table>');}
function wrap1 (text){	return('<table valign=top><tr><td valign=top><img src="images/arrow.gif" width=16 height=12></td><td valign=top><b><span class=navlink1>' + text + '</span></b></td></tr></table>');}
var MENU_ITEMS = [
	[wrap0('Schedules'), null, null,
		[wrap1('Current Schedule'), ['/uploadedfiles/N-CurClassSchedule.pdf','_blank',''], null],
		[wrap1('Next Week Schedule'), ['/uploadedfiles/N-NextWeek.pdf','_blank',''], null],
	],
	[wrap0('Class Description'), 'groupexercise.asp?id=70', null,
	],
];

var MENU_ITEMS1 = [
	[wrap0('Logout'), 'logout.asp', [2,195,120,35],],
];
/*<!--
<b><a class="NavLink" name="menu0" id="menu0" onmouseover="showMenu(event)" onmouseout="hideMenu(event)">Schedules</a></b>
DQM_subdesc0_0 = "Current Schedule"
DQM_urltarget0_0 = "_new"
DQM_url0_0 = "/uploadedfiles/N-CurClassSchedule.pdf"
DQM_subdesc0_1 = "Next Week Schedule"
DQM_urltarget0_1 = "_new"
DQM_url0_1 = "/uploadedfiles/N-NextWeek.pdf"

<b><a class="NavLink" href="groupexercise.asp?id=70">Class Description</a></b>
<% if Session("lngMemberID") <> "" then
%>
	<b><a class="NavLink" href="logout.asp">Logout</a></b>
<% end if %>
-->
*/

