//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("artsid", "Arts", "Arts",  null, null);
	menu.addItem("newsid", "News Sites", "News Sites",  null, null);
	menu.addItem("searchengineid", "Search Engines", "Search Engines",  null, null);

	menu.addSubItem("artsid", "Music", "Music",  "http://music.digitaiwan.com/participate/index.html","");
	menu.addSubItem("artsid", "Film", "Film",  "http://www.vconline.org/festival/","");
	menu.addSubItem("artsid", "Puppet show", "Puppet show",  "http://www.tufusa.org/album/puppet/puppet_album7.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", "NY Times", " NY Times",  "http://times.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("searchengineid", "Ask", "Ask",  "http://ask.com","");
	menu.addSubItem("searchengineid", "Map & Direction", "Map & Directioni",  "http://www.ask.com/?o=312#subject:map", "");
	menu.addSubItem("searchengineid", "Blog", "Blog",  "http://technorati.com/search/taiwanese","");
	menu.addSubItem("searchengineid", "Excite", "Excite", "http://www.excite.com", "");
	menu.addSubItem("searchengineid", "HotBot", "HotBot",  "http://www.hotbot.com", "");

	menu.showMenu();
}
