function initialise() {
	// Tell joust where to find the various index files it needs
	index1 = 'index.htm';
	index2 = 'index2.htm';
	index3 = 'bbc.html';
	// Set up parameters to control menu behaviour
	theMenu.autoScrolling = true;	
	theMenu.modalFolders = true;
	theMenu.linkOnExpand = true;
	theMenu.toggleOnLink = true;
	theMenu.showAllAsLinks = true;
	theMenu.savePage = true;
	theMenu.tipText = "status";
	theMenu.selectParents = false;
	theMenu.name = "theMenu";
	theMenu.container = "self.menu";
	theMenu.reverseRef = "parent";
	theMenu.contentFrame = "text";
	theMenu.defaultTarget = "text";
	// Initialise all the icons
	initOutlineIcons(theMenu.imgStore);
	var pen_up = pennants_brk+"<font color='red'><b> "+pennants_upd+"</b></font></i>";
	var newitem = "<font color='red'><b> new!</b></font></i>";
    var upditem = "<font color='red'><b> updated!</b></font></i>";
	// Now set up the menu with a whole lot of addEntry and addChild function calls
	var level1ID = -1;
	var level2ID = 0 ;
	var level3ID = 1 ;
	var level4ID = 2 ;
	

level1ID = theMenu.addEntry(level1ID, "House","&nbsp;&nbsp;HOME ", "bbc.html" , "HOME");
level1ID = theMenu.addEntry(level1ID, "Info","&nbsp;&nbsp;ABOUT ", "about.html" , "About the Bunbury Bowling Club");

level1ID = theMenu.addEntry(level1ID, "Info","&nbsp;&nbsp;<b>SEARCH</b>", "search.htm" , "Search the Bowling Club site");
level1ID = theMenu.addEntry(level1ID, "Info","&nbsp;&nbsp;<b>NEWS</b>", "news.html" , "What's happening around the Club");

level1ID = theMenu.addEntry(level1ID, "Folder","<b>&nbsp;&nbsp;CLUB PEOPLE</b>", "" , "Bunbury Bowling Club Members");
level2ID = theMenu.addChild(level1ID, "Document"," Current Office Bearers", "officers.html" , "Club Officials");
level2ID = theMenu.addEntry(level2ID, "Document"," Play Officials", "officials.html" , "Officials - Match, Coaches, Umpires");
level2ID = theMenu.addEntry(level2ID, "Document"," Club Champions ", "champions.html" , "Present and past Club Champions");
level3ID = theMenu.addChild(level2ID, "Document"," Mens Champions", "champions_m.html" , "Mens Champions");
level3ID = theMenu.addChild(level2ID, "Document"," Ladies Champions", "champions_l.html" , "Lady Champions");
level2ID = theMenu.addEntry(level2ID, "Camera"," Photographs " , "photos.html", "Images of Club players and social");

level1ID = theMenu.addEntry(level1ID, "Folder","<b>&nbsp;&nbsp;BOWLS EVENTS</b>"+upditem, "" , "Want a game?");
level2ID = theMenu.addChild(level1ID, "Folder","Club Pennants", "pennants.html" , "Mens and Ladies Pennants fixtures");
level3ID = theMenu.addChild(level2ID, "Document","Mens Sat. Red", "/pennants/satmenred.htm" , "Mens Saturday Red");
level3ID = theMenu.addChild(level2ID, "Document","Mens Sat. White", "/pennants/satmenwhite.htm" , "Mens Saturday White");
level3ID = theMenu.addChild(level2ID, "Document","Mens Sat. Blue", "/pennants/satmenblue.htm" , "Mens Saturday Blue");
level3ID = theMenu.addChild(level2ID, "Document","Mens Tue. Red", "/pennants/tuemenred.htm" , "Mens Tuesday Red");
level3ID = theMenu.addChild(level2ID, "Document","Mens Tue. White", "/pennants/tuemenwhite.htm" , "Mens Tuesday White");
level3ID = theMenu.addChild(level2ID, "Document","Mens Tue. Blue", "/pennants/tuemenblue.htm" , "Mens Tuesday Blue");
level3ID = theMenu.addChild(level2ID, "Document","Ladies Tue. 1st", "/pennants/tueladies1.htm" , "Ladies Tue. 1st");
level3ID = theMenu.addChild(level2ID, "Document","Ladies Tue. 2nd", "/pennants/tueladies2.htm" , "Ladies Tue. 2nd");
level3ID = theMenu.addChild(level2ID, "Document","Ladies Tue. 3rd", "/pennants/tueladies3.htm" , "Ladies Tue. 3rd");
level2ID = theMenu.addEntry(level2ID, "Folder","Members' Fixtures", "fixtures.html" , "Nominated and Discs In Events");
level3ID = theMenu.addChild(level2ID, "Document","Events Lists", "/events/thismonth.html" , "Fixtures this month and others");
level3ID = theMenu.addChild(level2ID, "Document","Fixtures Results", "/events/results.html" , "Results of Club games played");
level3ID = theMenu.addChild(level2ID, "Document"," Club Champions ", "champions.html" , "Present and past Club Champions");
level2ID = theMenu.addEntry(level2ID, "Document","Corporate Bowls", "corporate.html", "For non-bowlers -FUN!");
level2ID = theMenu.addEntry(level2ID, "Document","Games described", "games.html", "Scroungers,Cash Pairs,Railways, Discs In");

level1ID = theMenu.addEntry(level1ID, "Folder","<b>&nbsp;&nbsp;OTHER ACTIVITIES</b>", "" , "Other activities at the Club");
level2ID = theMenu.addChild(level1ID, "Document","Bingo", "bingo.html" , "Eyes down");
level2ID = theMenu.addEntry(level2ID, "Document","Beach Volleyball", "volleyball.html" , "Run by Bunbury Volleyball Association");
level2ID = theMenu.addChild(level1ID, "Document","Social", "social.html" , "Cards,Snooker,Darts,Poker,Singing,Craft,Schools");
level2ID = theMenu.addChild(level1ID, "Document","Functions", "functions.html" , "Corporate, Quiz Nights, Parties, Concerts");

level1ID = theMenu.addEntry(level1ID, "Folder","<b>&nbsp;&nbsp;CLUB MEMBERSHIP</b>", "membership.html" , "Bowlers and Social members");

level1ID = theMenu.addEntry(level1ID, "Folder","<b>&nbsp;&nbsp;LINKS to SITES</b>", "links.html" , "Links to related sites");

<!-- marker -->
}