//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", "Home",  null, null);
	menu.addItem("newsid", "G-PACT News", "G-PACT News",  null, null);
	menu.addItem("freedownloadid", "Exercises using Financial Data", "Exercises using Financial Data",  null, null);
	menu.addItem("searchengineid", "NYSSA Investment Challenge", "NYSSA Investment Challenge",  null, null);
	menu.addItem("miscid", "Contact", "Contact",  null, null);

	menu.addSubItem("webmasterid", "main", "main",  "http://webpage.pace.edu/gpact/index.html", "");
	menu.addSubItem("webmasterid", "Student Managed Investment Portfolios", "Student Managed Investment Portfolios",  "http://webpage.pace.edu/pviswanath/class/smip/smip.html", "");

	menu.addSubItem("newsid", "News and Happenings", "News and Happenings",  "http://webpage.pace.edu/gpact/news.htm", "");

	menu.addSubItem("freedownloadid", "Exercises", "Exercises",  "http://webpage.pace.edu/gpact/bridge_exercises.htm", "");
	
	menu.addSubItem("searchengineid", "About the Competition", "About the Competition",  "http://webpage.pace.edu/gpact/secanalcomp.htm", "");
	menu.addSubItem("searchengineid", "The Winning Pace Team", "The Winning Pace Team",  "http://webpage.pace.edu/gpact/nyssa/challenge_win.htm", "");

	menu.addSubItem("miscid", "Dr. P.V. Viswanath", "Dr. P.V. Viswanath",  "http://webpage.pace.edu/pviswanath", "_blank");

	menu.showMenu();
}
