/* 

- 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('Fitness'), 'membershipwb.asp?ID=35', null,
		[wrap1('Fitness Brochure'), ['/uploadedfiles/WB-PricingTrifold.pdf','_blank',''], null],
	],
	[wrap0('Tennis'), 'membershipwb.asp?ID=37', null,
		[wrap1('Tennis Brochure'), ['/uploadedfiles/WB-PricingTrifold.pdf','_blank',''], null],
	],
	[wrap0('Swim Club'), 'membershipwb.asp?ID=39', null,
		[wrap1('Swim Club Brochure'), ['/uploadedfiles/WB-PricingTrifold.pdf','_blank',''], null],
	],
	[wrap0('Contact a Membership Representative'), 'memberrep.asp', null,
	],
];

var MENU_ITEMS1 = [
	[wrap0('Logout'), 'logout.asp', [2,275,120,35],],
];
/*/*<!--
<b><a class="NavLink" href="membershipwb.asp?ID=35" name="menu0" id="menu0" onmouseover="showMenu(event)" onmouseout="hideMenu(event)">Fitness</a></b>
	DQM_subdesc0_0 = "Fitness Brochure"
	DQM_urltarget0_0 = "_new"
	DQM_url0_0 = "/uploadedfiles/WB-PricingTrifold.pdf"
<b><a class="NavLink" href="membershipwb.asp?ID=37" name="menu1" id="menu1" onmouseover="showMenu(event)" onmouseout="hideMenu(event)">Tennis</a></b>
	DQM_subdesc1_0 = "Tennis Brochure"
	DQM_urltarget1_0 = "_new"
	DQM_url1_0 = "/uploadedfiles/WB-PricingTrifold.pdf"
<b><a class="NavLink" href="membershipwb.asp?ID=39" name="menu2" id="menu2" onmouseover="showMenu(event)" onmouseout="hideMenu(event)">Swim Club</a></b>
	DQM_subdesc2_0 = "Swim Club Brochure"
	DQM_urltarget2_0 = "_new"
	DQM_url2_0 = "/uploadedfiles/WB-PricingTrifold.pdf"
<b><a class="NavLink" href="memberrep.asp">Contact a Membership Representative</a></b>

<% if Session("lngMemberID") <> "" then
%>
	<b><a class="NavLink" href="logout.asp">Logout</a></b>
<% end if %>
-->
*/
