//Top Nav bar script v2.1- http://www.dynamicdrive.com/dynamicindex1/sm/index.htm

function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location, linktarget);

	menu = new Menu();
	menu.addItem("bbbid", "Bar & Bistro", "Bar & Bistro", null, null);
	menu.addItem("homeid", "Home", "Home", null, null);
	menu.addItem("clubid", "SLSC", "SLSC",  null, null);
	menu.addItem("newsid", "News", "News",  null, null);
	menu.addItem("specialid", "Events", "Events", null, null);
	menu.addItem("seniorsid", "Seniors", "Seniors",  null, null);
	menu.addItem("juniorsid", "Juniors", "Juniors",  null, null);
	menu.addItem("coldieid", "Coldies", "Coldies", null, null);
	menu.addItem("tssid", "TSS", "TSS",  null, null);
	menu.addItem("membersid", "Members", "Members",  null, null);
	menu.addItem("linksid", "Links", "Links",  null, null);
	menu.addItem("galleryid", "Gallery", "Gallery",  null, null);

	menu.addSubItem("bbbid", "Bar, Bistro & Functions", "Bar, Bistro & Functions",  "Cudgen LTD/clubenter.html", "");
	
	menu.addSubItem("homeid", "Cudgen", "Cudgen",  "ClubInfo.html", "");
	menu.addSubItem("homeid", "Entry", "Entry",  "enter.html", "");

	menu.addSubItem("clubid", "Contacts", "Contacts",  "contact.html", ""); 
	menu.addSubItem("clubid", "Protection Policy", "Protection Policy",  "memprotect.html", "");
	menu.addSubItem("clubid", "Annual Report 09", "Annual Report 09",  "AnnualReport0809.pdf", "");
	

	menu.addSubItem("clubid", "Handbook 2009/10", "Handbook 2009/10",  "CudgenSLSCHBook.pdf", "");
	menu.addSubItem("clubid", "Calendar 2009/10", "Calendar 2009/10",  "calendar0910.html", "");

	menu.addSubItem("newsid", "News Feb 10", "News Feb 10",  "newsFeb10.html", "");
	menu.addSubItem("newsid", "News Jan 10", "News Jan 10",  "newsJan10.html", "");
	menu.addSubItem("newsid", "News Oct 09", "News Oct 09",  "newsOct09.html", "");
	menu.addSubItem("newsid", "News Sept 09", "News Sept 09",  "newsSept09.html", "");
	
	
	
	menu.addSubItem("specialid", "Cudgen 85 Years", "Cudgen 85 Years",  "cudgenbook.html", "");
	menu.addSubItem("specialid", "Car Comp 2010", "Car Comp 2010",  "carcomp2010.html", "");
	menu.addSubItem("specialid", "Carnival 09", "Carnival 09",  "carnivalinfo09.html", "");


	menu.addSubItem("seniorsid", "Courses", "Courses",  "courses2010.html", "");
	menu.addSubItem("seniorsid", "Proficiency", "Proficiency",  "profqual.html", "");
	menu.addSubItem("seniorsid", "The Board", "The Board",  "board.html", "");
	menu.addSubItem("seniorsid", "Minutes 12/7/09", "Minutes 12/7/09",  "minutes120709.html", "");

	
	menu.addSubItem("juniorsid", "Officers", "Officers",  "juniors.html", "");
	


	menu.addSubItem("coldieid", "Coldies Club", "Coldies Club",  "coldies.html", "");
	menu.addSubItem("coldieid", "Coldies Corner", "Coldies Corner",  "ColdiesCorner.html", "");
	menu.addSubItem("coldieid", "New Members", "New Members",  "NewColdies.html", "");
	
	
	
	menu.addSubItem("tssid", "Tweed Support Services", "Tweed Support Services",  "tweedsupport.html", "");


	menu.addSubItem("membersid", "Fees", "Fees",  "member.html", "");



	menu.addSubItem("linksid", "SLS Clubs", "SLS Clubs",  "clublink.html", "");
	
	
	
	menu.addSubItem("galleryid", "Gold Coast Titles", "Gold Coast Titles",  "gctitle.html", "");
	menu.addSubItem("galleryid", "Ken Small", "Ken Small",  "kensmall.html", "");
	menu.addSubItem("galleryid", "Coldies", "Coldies",  "coldiepics.html", "");
	menu.addSubItem("galleryid", "Bronze Medallion", "Bronze Medallion",  "bronzepics.html", "");
	menu.addSubItem("galleryid", "Sunday Swim", "Sunday Swim",  "sundayswim.html", "");
	menu.addSubItem("galleryid", "Yamba Sept 08", "Yamba Sept 08",  "yamba08.html", "");
	menu.addSubItem("galleryid", "Jan Gielis", "Jan Gielis",  "JanG08.html", "");
	menu.addSubItem("galleryid", "Dave Field", "Dave Field",  "fieldy.html", "");
	
	menu.showMenu();
}