function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("one", "Leader, Casablanca & Kaspersky", "Company Sites for Details");
	menu.addItem("three","Museum ","Details on our Museum CD");
	menu.addItem("four", "Search Engines", "Search Engines");
	menu.addItem("five", "Software Downloads / Drivers","Download Software Updates / Drivers");
	menu.addItem("six", "Interesting Sites","Interesting Sites",null, null);

	menu.addSubItem("one", "Leader desktops", "View Latest Catalog", "http://www.leadersystems.com.au/index.asp?logout=1");
	menu.addSubItem("one", "Casablanca Video Editors", "View editors", "http://www.abtec.com.au/");
	menu.addSubItem("one", "Kaspersky Anti Virus", "Order Kaspersky", "https://estore.kaspersky.com.au/?Affiliate=MAMCA");
	
	menu.addSubItem("three", "Museum Index", "Right Click to Save - Museum Index",  "mindex.pdf");
	menu.addSubItem("three", "Page Eight", "Right Click to Save - Page 8",  "A8U.pdf");
	menu.addSubItem("three", "Page K25", "Right Click to Save - Page K25",  "K25.pdf");
	menu.addSubItem("three", "January 2006", "Right Click to Save - January 2006",  "JAN06.pdf");
	menu.addSubItem("three", "September 2005", "Right Click to Save - September 2005",  "SEPT05.pdf");
	menu.addSubItem("three", "May 2005", "Right Click to Save - May 2005",  "May05.pdf");
	
	menu.addSubItem("four", "Yahoo Australia", "Yahoo! database from a uniquely Aussie and Kiwi perspective!",  "http://au.yahoo.com");
	menu.addSubItem("four", "Infoseek", "Infoseek",  "http://www.infoseek.com/");
	menu.addSubItem("four", "Excite", "Excite", "http://www.excite.com");
	menu.addSubItem("four", "HotBot", "HotBot",  "http://www.hotbot.com");
	menu.addSubItem("four", "Google Australia", "Gain access to Australias websites and Googles general database!",  "http://www.Google.com.au");
	menu.addSubItem("four", "Ask Jeeves", "Ask Jeeves",  "http://www.askjeeves.com");
	menu.addSubItem("four", "Lycos", "Lycos",  "http://www.Lycos.com");
	menu.addSubItem("four", "LookSmart", "LookSmart",  "http://www.looksmart.com");
	menu.addSubItem("four", "All Of Down Under", "Guide to Australia and New Zealand",  "http://www.allofdownunder.com");
	menu.addSubItem("four", "Money Web", "Todays premier international financial directory and resource guide!",  "http://www.moneywebsearch.com");	
	menu.addSubItem("four", "Altavista", "Australia and global web search!",  "http://www.au.altavista.com");
	menu.addSubItem("four", "Oz Search", "Starting point for any thorough search of Australian websites!",  "http://www.ozsearch.com.au");
	menu.addSubItem("four", "Wild Dog Search", "Specializing in indexing Australian web sites!",  "http://www.wilddogsearch.com.au");
	menu.addSubItem("four", "Web Wombat", "The original Australian search engine!",  "http://www.webwombat.com.au");
	menu.addSubItem("four", "Mosaic FX", "Your life, business, and career portal - Australia service!",  "http://au.mosaicfx.com");

	menu.addSubItem("five", "Kaspersky Anti Virus", "Kaspersky", "https://estore.kaspersky.com.au/?Affiliate=MAMCA");
	menu.addSubItem("five", "Intel Proccessor ID", "Intel Processor Identification Utility - 2.0 Mb",  "http://support.intel.com/support/processors/tools/frequencyid/freqid.htm ");
	menu.addSubItem("five", "Acrobat Reader", "Acrobat Reader","http://www.adobe.com/products/acrobat/readstep2.html");
	menu.addSubItem("five", "Winzip", "Winzip",  "http://www.winzip.com");
	menu.addSubItem("five", "Java for Windows XP", "Java Update For Windows XP",  "http://java.com/en/download/manual.jsp");	
	
	menu.addSubItem("six", "www.Geek.Com", "Geek.Com - The Technology Web Site",  "http://www.geek.com");
	menu.addSubItem("six", "www.Webshots.Com", "The Webshots Desktop Screensaver",  "http://www.webshots.com");
	menu.addSubItem("six", "www.sms.ac", "Free SMS @ SMS.ac",  "http://www.sms.ac");
	menu.addSubItem("six", "www.PC Authority", "PC Authority Australia",  "http://www.PCAuthority.com.au");
	
	menu.showMenu();
}