//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("favid", "Favorite Links", "Favorite Links", null, null);
	
	menu.addItem("morewebid", "My Web Sites", "My Web Sites", null, null);
	menu.addItem("tutid","Tutorials", "Tutorials",  null, null);
	
	menu.addItem("linkid","Links", "Links",  null, null);
	menu.addItem("eguestid","Email", "email me",  null, null);






menu.addSubItem("favid","Juelle Web Design", "Juelle Web Design", "http://www.juellewebdesign.bravepages.com/Index.html", "");

menu.addSubItem("favid","GraphiX Anonymous", "GraphiX Anonymous", "http://forums.delphiforums.com/graphx1/start", "");

menu.addSubItem("favid","Budding HTML Guru", "Budding HTML Guru", "http://buddinghtmlgurus.co.uk/", "");

menu.addSubItem("favid","Web Tech U", "Web Tech U", "http://www.webtechu.com/index.html", "");





menu.addSubItem("morewebid","PJ's Adventures", "PJs Adventures", "http://www.pjsadventures.com", "");
	
menu.addSubItem("morewebid","Dragon's Keep", "My SCA site", "http://www.pjsadventures.com/DragonsKeep", "");
	

	

menu.addSubItem("tutid","My Tutorials", "My Tutorials",  "http://www.pjsadventures.com/tutorials.html", "");


	

menu.addSubItem("linkid","Dynamic Drive", "Dynamic Drive", "http://www.dynamicdrive.com", "");
	
menu.addSubItem("linkid","GoNamer", "GoNamer", "http://www.GoNamer.com", "");
	

menu.addSubItem("eguestid","Email me", "email me", "mailto:pjbarnes1@yahoo.com", "");
	
menu.showMenu();
}
