//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("homeid", "Home", "Home, boy...", "index.htm");
	menu.addItem("Viewsid", "Views & News", "Suggestions for the Swedish government", "view_news.htm");
	menu.addItem("funthingsid", "Fun Things", "Enjoy yourself for a change", null, null);
	menu.addItem("guestid", "Guests : RANT & RAVE!", "Tell me about your childhood", "http://www.markbase.net/markbase_guestbook.htm");
	menu.addItem("mailpalid", "E-Mail a Friend", "Spam someone today!", "mail_pal.htm");
	menu.addItem("chatid", "Chat", "", "chat.html");

	//menu.addSubItem("Viewsid", "Blogs", "Serious blogging happening here",  "http://mdabase.blogspot.com", "");
	//menu.addSubItem("Viewsid", "T", "JavaScript Kit",  "news_views.htm", "");
	//menu.addSubItem("Viewsid", "Web Review", "Web Review",  "http://www.webreview.com/", "");
	//menu.addSubItem("Viewsid", "Freewarejava.com", "Freewarejava.com",  "http://www.freewarejava.com/", "_blank");
	//menu.addSubItem("Viewsid", "Web Monkey", "Web Monkey",  "http://www.webmonkey.com/", "_blank");

	//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://news.com", "");
	//menu.addSubItem("newsid", "Wired News", "Wired News",  "http://www.wired.com", "");
	//menu.addSubItem("newsid", "TechWeb", "TechWeb",  "http://www.techweb.com", "");

	menu.addSubItem("funthingsid", "Recipes", "Cook",  "recipes.htm", "");
	menu.addSubItem("funthingsid", "Music", "Listen",  "music.htm", "");
	menu.addSubItem("funthingsid", "Buy Stuff", "Spend your hard-earned cash stupidly",  "buy.htm", "");
        menu.addSubItem("funthingsid", "Games", "Kill some time",  "games.html", "");

	//menu.addSubItem("searchengineid", "Yahoo", "Yahoo",  "http://www.yahoo.com/", "");
	//menu.addSubItem("searchengineid", "Google", "Google",  "http://www.google.com/", "");
	//menu.addSubItem("searchengineid", "Excite", "Excite", "http://www.excite.com", "");
	//menu.addSubItem("searchengineid", "HotBot", "HotBot",  "http://www.hotbot.com", "");

	//menu.addSubItem("miscid", "Cnet", "Cnet",  "http://www.cnet.com/", "");
	//menu.addSubItem("miscid", "RealAudio", "RealAudio",  "http://www.realaudio.com/", "");
	//menu.addSubItem("miscid", "MP3.com", "MP3.com",  "http://www.mp3.com/", "");

	menu.showMenu();
}