var MENU1_ITEMS =[
	[wrap_blue('Home'), 'default.asp', {'tt': 'Back to the Home Page', 'sw':80}],
	[wrap_blue('Volunteers'), null, {'tt': 'Learn more about volunteers and view our opportunities', 'sw':105},
		['Search Opportunities', 'opportunity.asp', null,
			['Search by Title', 'search.asp?mode=bytype', null],
			['Search by Agency', 'search.asp?mode=byagency', null],
			['Search by Category', 'search.asp?mode=bycategory', null],
			['Special Events Calendar', 'calendar.asp', null]
		],
		['Sign Up to Volunteer', 'vol-signup.asp'],		
		['Get Involved', 'content.asp?pg=involved'],
		['Students', 'content.asp?pg=students'],
		['Volunteering FAQs', 'content.asp?pg=vfaq']
			
	],
	[wrap_blue('Partners'), null, {'tt': 'Learn about our Community Partners', 'sw':95},
		['Our Partners', 'content.asp?pg=partners'],
		['Becoming a Partner', 'content.asp?pg=becomeapartner'],		
		['Partner FAQs', 'content.asp?pg=ofaq'],
		['Members Area Login', 'login.asp']		
	],
	[wrap_blue('Programs'), null, {'tt': 'Learn about our Programs and Events', 'sw':95},
		['Leadership Development', 'content.asp?pg=leaddev'],		
		['Connectors', 'content.asp?pg=nexus'],
		['For Volunteer Managers', 'content.asp?pg=pavro'],
		['Thunder Bay Code for Volunteer Involvement', 'content.asp?pg=volunteercode'],								
		['Youth Volunteer Corps', 'content.asp?pg=yvc'],
		['Involving Youth in Volunteer Programming', 'content.asp?pg=InvolvingYouth']	
	],
	[wrap_blue('Events/Calendar'), null, {'tt': 'Learn about our Programs and Events', 'sw':120},
		['Special Events Calendar', 'calendar.asp'],
		['Celebrity Art Auction', 'content.asp?pg=artauction'],
		['RBC Mayors Walk', 'content.asp?pg=mayorswalk'],
		['&nbsp;&nbsp;&nbsp;&nbsp;- Photo Gallery 2008', 'mayorswalk2008.asp'],
		['&nbsp;&nbsp;&nbsp;&nbsp;- Photo Gallery 2007', 'mayorswalk2007.asp'],
		['&nbsp;&nbsp;&nbsp;&nbsp;- Photo Gallery 2006', 'mayorswalk2006.asp'],
		['&nbsp;&nbsp;&nbsp;&nbsp;- Photo Gallery 2005', 'mayorswalk2005.asp']		
	],			
	[wrap_blue('About Us'), null, {'tt': 'Learn more about Volunteer Thunder Bay', 'sw':100},
		['About Us', 'content.asp?pg=about'],
		['Careers and Jobs', 'content.asp?pg=careers'],
		['Contact Us', 'content.asp?pg=contact'],		
		['Map to our Location', 'content.asp?pg=map'],
		['Office Directory', 'content.asp?pg=office']
	],
	[wrap_blue('Other Links'), '', {'tt': '', 'sw':110},
		['Web Links', 'content.asp?pg=links'],
		['Internet Resources', 'content.asp?pg=netres'],		
		['Privacy Policy', 'content.asp?pg=privacy'],
		['Website Policy', 'content.asp?pg=policy'],		
		['Site Map', 'content.asp?pg=sitemap'],	
	]	
];

<!-- Volunteers -->
var MENU2_ITEMS =[
	[wrap_blue('Members Home'), 'members/default.asp', {'tt': 'Members Home Page', 'sw':115}],
	[wrap_blue('My Account'), null, {'tt': '', 'sw':118},
		['My Opportunities', 'members/vol-myopps.asp', ''],
		['Contact Information', 'members/vol-editself.asp', ''],		
		['Change Password', 'members/all-changepw.asp', '']	
	],
	[wrap_blue('Opportunities'), null, {'tt': '', 'sw':118},
		['Search by Title', 'search.asp?mode=bytype', null],
		['Search by Agency', 'search.asp?mode=byagency', null],
		['Search by Category', 'search.asp?mode=bycategory', null]	
	],	
	[wrap_blue('Calendar'), null, {'tt': '', 'sw':118},		
		['Volunteer Calendar', 'members/all-calendar.asp?mode=mbr', '']
	],		
	[wrap_blue('Resources'), null, {'tt': '', 'sw':118},
		['Documents and Files', 'members/all-files.asp', '']
	],	
	[wrap_blue('Logout'), 'default.asp', {'tt': '', 'sw':118}]	
];

function wrap_blue (text) {
	var res=[];
	for (var i=0; i<3; i++)
		res[i]=['<table cellpadding="0" cellspacing="0" border="0"><tr><td><img src="menu/img/blue',
			(i?2:1),'_l.gif" width="8" height="23" border="0"></td><td background="menu/img/blue',
			(i?2:1),'_m.gif" style="font-face: tahoma, verdana, arial; font-size: 11px; font-weight: bold; color: #105D94" width="100%">',text,'</td><td><img src="menu/img/blue',
			(i?2:1),'_r.gif" width="8" height="23" border="0"></td></tr></table>'
		].join('');
	return res;
}