//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 Start","butt.asp");
	menu.addItem("newsid", "Internet", "The Net",  null, null);
	menu.addItem("freedownloadid", "The Price", "Our Fees",  "price.asp");
	menu.addItem("searchengineid", "Links", "Earlier Jobs",  null, null);
	menu.addItem("miscid", "Miscellaneous", "Miscellaneous",  null, null);

	

	menu.addSubItem("newsid", "Why The Net?", "The Net",  "why.asp", "");
	menu.addSubItem("newsid", "Can I?", "The Net",  "can.asp", "");
	menu.addSubItem("newsid", "Low Cost", "The Net",  "low.asp", "");
	menu.addSubItem("newsid", "How We Can Help", "The Net",  "how.asp", "");
        menu.addSubItem("newsid", "What Can We Do?", "The Net",  "what.asp", "");
	menu.addSubItem("newsid", "Your Job", "The Net",  "your.asp", "");
	

	menu.addSubItem("freedownloadid", "Dynamic Drive", "Dynamic Drive",  "http://www.dynamicdrive.com/", "");
	menu.addSubItem("freedownloadid", "Download.com", "Download.com",  "http://download.com/", "");
	menu.addSubItem("freedownloadid", "Tucows", "Tucows",  "http://tucows.com/", "");

	menu.addSubItem("searchengineid", "Guide Of Crete", "Lets Go!",  "http://www.kretaguiden.com/", "");
	menu.addSubItem("searchengineid", "Guide Of Greece", "Lets Go!",  "http://www.greklandsguiden.com/", "");
	menu.addSubItem("searchengineid", "Vigla", "Lets Go",  "http://www.vigla-chania.com/", "");
	menu.addSubItem("searchengineid", "Neorio", "Lets Go",  "http://www.neoriocar-rental.com/", "");


	menu.addSubItem("miscid", "Contact", "Misc",  "under.asp", "");
	menu.addSubItem("miscid", "Orderform", "Misc",  "best.asp", "");
	menu.addSubItem("miscid", "Commentery", "Misc",  "under.asp", "");

	menu.showMenu();
}