//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("issuesid", "Current Issue", "Current Issue",  "http://www.nm3live.com/currentissue.html", "");
	menu.addItem("healthid", "Health & Fitness", "Health & Fitness",  null, null);
	menu.addItem("sportsid", "The Sports Page", "The Sports Page",  null, null);
	menu.addItem("miscid", "Obsessions", "Obsessions",  null, null);

	menu.addSubItem("issuesid", "Special Feature--Valentine's Day", "Special Feature--Valentine's Day",  "http://www.nm3live.com/currentissue.html", "");
	menu.addSubItem("issuesid", "Style", "Style",  "http://www.nm3live.com/style.html", "");
	menu.addSubItem("issuesid", "Gear", "Gear",  "http://www.nm3live.com/", "");
	menu.addSubItem("issuesid", "0 to 60", "0 to 60",  "http://www.nm3live.com/60.html", "_blank");
	menu.addSubItem("issuesid", "In the Garage", "In the Garage",  "http://www.nm3live.com/", "_blank");
	menu.addSubItem("issuesid", "Street Legal", "Street Legal",  "http://www.nm3live.com/streetlegal.html", "_blank");

	menu.addSubItem("healthid", "Training", "Training",  "http://www.nm3live.com/training.html", "");
	menu.addSubItem("healthid", "Parenting", "Parenting",  "http://www.nm3live.com/parenting.html", "");
	menu.addSubItem("healthid", "The Doc Is In", "The Doc Is In",  "http://www.nm3live.com/garyvann.html", "");

	menu.addSubItem("sportsid", "The Sports Page", "The Sports Page",  "http://www.nm3live.com/sportspage.html", "");
	menu.addSubItem("sportsid", "Racing", "Racing",  "http://www.nm3live.com/racing.html", "");
	menu.addSubItem("sportsid", "Upcoming Season", "Upcoming Season",  "http://www.nmmensmag.com/upcomingseason.html", "");
	menu.addSubItem("sportsid", "Hunting", "Hunting",  "http://www.nm3live.com/", "");
	menu.addSubItem("sportsid", "Fishing", "Fishing",  "http://www.nm3live.com/", "");
	menu.addSubItem("sportsid", "Paintball", "Paintball",  "http://www.nm3live.com/", "");
	menu.addSubItem("sportsid", "Cycling", "Cycling",  "http://www.nm3live.com/biking.html", "");
	menu.addSubItem("sportsid", "Rugby", "Rugby",  "http://www.nm3live.com/rugby.html", "");

	menu.addSubItem("miscid", "The Good Life", "The Good Life",  "http://www.nm3live.com/goodlife.html", "");
	menu.addSubItem("miscid", "Cars", "Cars",  "http://www.nm3live.com/cars.html", "");
	menu.addSubItem("miscid", "Interesting Hobbies", "Interesting Hobbies",  "http://www.nm3live.com/", "");
        menu.addSubItem("miscid", "What to Do This Week", "What to Do This Week",  "http://www.nm3live.com/todo.html", "");
	menu.addSubItem("miscid", "Pours", "Pours",  "http://www.nm3live.com/Pours.html", "");
	menu.addSubItem("miscid", "The Pithy Palate", "The Pithy Palate",  "http://www.nm3live.com/pithypalate.html", "");
	menu.addSubItem("miscid", "Local Music", "Local Music",  "http://www.nm3live.com/music.html", "");

	menu.showMenu();
}