/* Copyright - Anthony Tripp 2004-2005  
   All rights reserved */
function menuItem(text, link, numberOfSubMenus) {
	this.text = text || '';
	this.link = link || '';
	this.numberOfSubMenus = numberOfSubMenus || 0;
	if (this.numberOfSubMenus > 0)
	{
		this.subMenu = new Array(this.numberOfSubMenus);
	}
	else
	{
		this.subMenu = null;
	}
	this.DL = null;
	this.mDL = null;
	this.sDL = null;
}

var numberOfMenuItems = 7;

var aH = new Array (numberOfMenuItems);

aH[1] = new menuItem('Home','/home_page.html',0);

aH[2] = new menuItem('News','/news.html',1);
aH[2].subMenu[1] = new menuItem('Announcements','/announcements.html',0);

aH[3] = new menuItem('Annual Events','/annualevents.html',6);
aH[3].subMenu[1] = new menuItem('AGM','/annualmeeting.html',0);
aH[3].subMenu[2] = new menuItem('Dinner','/annualdinner.html',0);
aH[3].subMenu[3] = new menuItem('Wimbledon Cocktail Party','/wimbledonparty.html',0);
aH[3].subMenu[4] = new menuItem('The Harley Watkins Cups','/harleywatkins.html',0);
aH[3].subMenu[5] = new menuItem('The Dennis Coombe Cup','/denniscoombe.html',0);
aH[3].subMenu[6] = new menuItem('Torquay Weekend','/torquay.html',0);

aH[4] = new menuItem('Matches','/matches.html',1);
aH[4].subMenu[1] = new menuItem('Current Calendar','/currentcalendar.html',0);

aH[5] = new menuItem('Results','/results.html',1);
aH[5].subMenu[1] = new menuItem('Past Results','/pastresults.html',0);

aH[6] = new menuItem('Links','/links.html',0);

aH[7] = new menuItem('About Us','/about_us.html',5);
aH[7].subMenu[1] = new menuItem('History','/history.html',0);
aH[7].subMenu[2] = new menuItem('Constitution','/const.html',0);
aH[7].subMenu[3] = new menuItem('Current Officers','/currentofficers.html',0);
aH[7].subMenu[4] = new menuItem('Past Officers','/pastofficers.html',0);
aH[7].subMenu[5] = new menuItem('Application Form','/application.html',0);