//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("webmasterid", "Home", "Back to Homepage",  null, null);
	menu.addItem("newsid", "Course Outline", "What to Expect",  null, null);
	menu.addItem("freedownloadid", "Join", "Join us and Learn",  null, null);
	menu.addItem("searchengineid", Lessons", "Start Your Lessons Here",  null, null);
	menu.addItem("miscid", "Sister Sites", "Take a look around our sites",  null, null);
 
        menu.addItem("guestid", "Guestbook", "Guestbook",  null, null);
        menu.addItem("emailid", "Email", "Contact Me",  null, null);

	menu.addSubItem("webmasterid", "Poetry Index", "Poetry Index",  "http://www.snowdropdesign.pwp.blueyonder.co.uk/Poetrypages.html", "");


	menu.addSubItem("newsid", "Tube Index", "Tube Index", "http://www.angelfire.com/pro/snowdropdesign/index.html", "");
	

	menu.addSubItem("freedownloadid", "Tutorial Index",  "Tutorial Index",  "http://www.snowdropdesign.pwp.blueyonder.co.uk/Tutindex.html", "");
	

	menu.addSubItem("searchengineid", "Linkware Sets", "My Websets",  "http://www.snowdropdesign.pwp.blueyonder.co.uk/Websets.html", "");
	menu.addSubItem("searchengineid", "Commercial Sets", "Coming Soon",   "");

	menu.addSubItem("miscid", "Awards Index", "My Awards",  "http://www.snowdropdesign.pwp.blueyonder.co.uk/Awards.html", "");

        menu.addSubItem("guestid", "Guestbook", "Please Sign",  "http://pub18.bravenet.com/guestbook/show.php?usernum=1522168741&cpv=1", "");
  
        menu.addSubItem("emailid", "Email", "Contact Me",  "mailto:snowdropdesign@hotmail.com", "");
	

	menu.showMenu();
}