//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("title", "Main Menu",  "Country Routes Homepage",  "http://www.njmt.f2s.com/cr/index.htm", null);
	menu.addItem("mag", "The Mag",  "Whats in our magazine?",  null, null);
	menu.addItem("shop", "Shop", "Country Routes Magazine Shop",  "http://www.njmt.f2s.com/cr/shop.htm", null);
	menu.addItem("links", "Links", "Loads of Country links",  null, null);
	menu.addItem("gbook", "Guestbook", "Please sign and view our Guestbook",  "http://mod-site.net/gb/u/nickyjmt8-1.html", null);
	menu.addItem("contact", "Contact Us", "How to contact us",  "http://www.njmt.f2s.com/cr/mail.htm", null);
	
	menu.addSubItem("mag", "This Issue", "This Issue",  "http://www.njmt.f2s.com/cr/this.htm", "");
	menu.addSubItem("mag", "Editors Blog", "Monthly opinions from our Editor",  "http://www.njmt.f2s.com/cr/blog.htm", "");
	menu.addSubItem("mag", "Dave's Page", "Dave Walkers hot topics",  "http://www.njmt.f2s.com/cr/dave.htm", "");
	menu.addSubItem("mag", "Advertising", "Stuff For Sale, events, clubs and interesting links to follow",  "http://www.njmt.f2s.com/cr/ads.htm", "");
	menu.addSubItem("mag", "Album Reviews", "Album Reviews",  "http://www.njmt.f2s.com/cr/rev.htm", "");
	menu.addSubItem("mag", "Gallery", "Photo Galleries",  "http://www.njmt.f2s.com/cr/gallery.htm", "");
	menu.addSubItem("mag", "Gig Guide", "Gigs advertised here!",  "http://www.njmt.f2s.com/cr/gg.htm", "");
	menu.addSubItem("mag", "Fun Stuff", "Puzzles just for fun",  "http://www.njmt.f2s.com/cr/fun.htm", "");
	menu.addSubItem("mag", "Back Issues", "Back Issues and details",  "http://www.njmt.f2s.com/cr/back.htm", "");

	menu.addSubItem("links", "Country Links", "Country Links",  "http://www.njmt.f2s.com/cr/links.htm", "");
	menu.addSubItem("links", "Dance Links", "Dance Links",  "http://www.njmt.f2s.com/cr/dance.htm", "");
	menu.addSubItem("links", "Festival Links", "Festival Links",  "http://www.njmt.f2s.com/cr/fest.htm", "");
	menu.addSubItem("links", "Link To Us", "Link To Us",  "http://www.njmt.f2s.com/cr/linktous.htm", "");	
	menu.showMenu();
}