//Top Nav bar script v2- http://www.dynamicdrive.com/dynamicindex1/sm/index.htm

function showToolbar()
{
// AddItem(id, text, hint, location, alternativeLocation);
// AddSubItem(idParent, text, hint, location);

	menu = new Menu();
	menu.addItem("soid", "Service Offerings", "Service Offerings",  null, null);
	menu.addItem("meetid", "Meet the Advisors", "Bios",  null, null);
	menu.addItem("articlesid", "Articles", "Articles by the Advisors",  null, null);
	menu.addItem("askid", "Ask the Advisors", "Ask us a question",  "ask.html", null);


	menu.addSubItem("soid", "Service Offerings Overview", "An Overview",  "overview.html");
	menu.addSubItem("soid", "How We Work", "How We Work",  "hww.html");

	menu.addSubItem("meetid", "Scott Parker", "Scott Parker",  "parker.html");
	menu.addSubItem("meetid", "John Malitoris", "John Malitoris",  "malitoris.html");

	menu.addSubItem("articlesid", "Increasing Marketing Benefits", "Increasing the Benefits of Law Firm Marketing",  "benefits.html");
	menu.addSubItem("articlesid", "Selling Professional Services", "Selling Professional Services",  "sps.html");
	menu.addSubItem("articlesid", "Continuing the Connection", "Relationship Building - Continuing the Connection",  "continuing.html");
	menu.addSubItem("articlesid", "Leadership and Trust", "Leadership, Trust, and Intangible Services",  "leadership.html");


	menu.showMenu();
}
