function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("aboutid", "About Me", "About Me",  null, null);
	menu.addItem("pics", "Pictures", "Pictures",  null, null);
	menu.addItem("freedownloadid", "Computer Stuff", "Computer Stuff",  null, null);
	menu.addItem("contactid", "Contact Me", "Contact Me",  null, null);
	menu.addItem("newsid", "News Links", "News Links",  null, null);
	menu.addItem("searchid", "Search Engines", "Search Engines",  null, null);
	menu.addItem("stocksid", "Stocks", "Stocks",  null, null);

	menu.addSubItem("aboutid", "My Bio", "My Bio",  "about.htm");
	menu.addSubItem("aboutid", "My Pics", "My Pics",  "me.htm");
	menu.addSubItem("aboutid", "My Automotive Links:", "My Automotive Links:", "index.htm");
	menu.addSubItem("aboutid", "Pontiac", "Pontiac",  "http://www.pontiac.com");
	menu.addSubItem("aboutid", "Flowmaster", "Flowmaster",  "http://www.flowmastermufflers.com");
	menu.addSubItem("aboutid", "Ferrari", "Ferrari",  "http://www.ferrari.com");
	menu.addSubItem("aboutid", "Porsche", "Porsche",  "http://www.porsche.com");
	menu.addSubItem("aboutid", "Ford SVT", "Ford SVT",  "http://www.svt.ford.com/");

	
	menu.addSubItem("pics", "My Pics", "My Pics",  "me.htm");
	menu.addSubItem("pics", "Heather's Pics", "Heather's Pics",  "heather.htm");
	menu.addSubItem("pics", "Dad's Pics", "Dad's Pics",  "dad.htm");
	menu.addSubItem("pics", "Car Pics", "Car Pics",  "cars.htm");
	menu.addSubItem("pics", "Family Pics", "Family Pics",  "family.htm");
	menu.addSubItem("pics", "Jared's Pics", "Jared's Pics",  "jared.htm");
	menu.addSubItem("pics", "Shawn's Pics", "Shawn's Pics",  "shawn.htm");
	menu.addSubItem("pics", "Dave's Pics", "Dave's Pics",  "dave.htm");
	menu.addSubItem("pics", "Pet Pics", "Pet Pics",  "pets.htm");

	menu.addSubItem("freedownloadid", "Tasrock.com Downloads", "Tasrock.com Downloads",  "files.htm");
	menu.addSubItem("freedownloadid", "My Computer Tricks", "My Computer Tricks",  "computer.htm");
	menu.addSubItem("freedownloadid", "Download.com", "Download.com",  "http://www.download.com/");
	menu.addSubItem("freedownloadid", "Tucows", "Tucows",  "http://www.tucows.com/");
      menu.addSubItem("freedownloadid", "Bearshare.com", "Bearshare.com",  "http://www.bearshare.com/");
	menu.addSubItem("freedownloadid", "Pricewatch", "Pricewatch",  "http://www.pricewatch.com/");
	menu.addSubItem("freedownloadid", "Megagames", "Megagames",  "http://www.megagames.com/");
	menu.addSubItem("freedownloadid", "Internet Tester", "Internet Tester",  "http://www.tasrock.com/chkpt.zdnet.com/chkpt/hud00025mnbbst/msn.zdnet.com/partners/msn/bandwidth/speedtest.htm/");


	menu.addSubItem("contactid", "E-mail", "E-mail",  "mailto:travis@tasrock.com");
	menu.addSubItem("contactid", "ICQ Pager", "ICQ Pager",  "http://wwp.icq.com/72028313#pager");
	menu.addSubItem("contactid", "Contact Page", "Contact Page", "contact.htm");


	menu.addSubItem("newsid", "CNN", "CNN",  "http://www.cnn.com");
	menu.addSubItem("newsid", "ABC News", "ABC News",  "http://www.abcnews.com");
	menu.addSubItem("newsid", "MSNBC", "MSNBC",  "http://www.msnbc.com");
	menu.addSubItem("newsid", "CBS news", "CBS News",  "http://www.cbsnews.com");
	menu.addSubItem("newsid", "News.com", "News.com",  "http://www.news.com");
	menu.addSubItem("newsid", "Wired News", "Wired News",  "http://www.wired.com");
	menu.addSubItem("newsid", "TechWeb", "TechWeb",  "http://www.techweb.com");


	menu.addSubItem("searchid", "Altavista", "Altavista",  "http://www.altavista.com/");
	menu.addSubItem("searchid", "Metacrawler", "Metacrawler",  "http://www.Metacrawler.com/");
	menu.addSubItem("searchid", "Yahoo", "Yahoo",  "http://www.yahoo.net/");
	menu.addSubItem("searchid", "Excite", "Excite",  "http://www.excite.com/");
	menu.addSubItem("searchid", "Yellow Pages", "Yellow Pages",  "http://www.yellowpages.com/");

	menu.addSubItem("stocksid", "Bigcharts", "Bigcharts",  "http://www.bigcharts.com/");
	menu.addSubItem("stocksid", "Clearstation", "Clearstation",  "http://www.clearstation.com/");
	menu.addSubItem("stocksid", "CNBC", "CNBC",  "http://www.cnbc.net/");
	menu.addSubItem("stocksid", "My.Yahoo", "My.Yahoo",  "http://www.my.yahoo.com/");


	menu.showMenu();
}
