//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("aboutid", "About Mr. Brandl", "About Mr. Brandl",  null, null);
	menu.addItem("hrsid", "Holy Redeemer School", "Holy Redeemer School",  null, null);
  menu.addItem("currentid", "Current Students", "Current Students",  null, null);
	menu.addItem("electivesid", "Electives", "Electives",  null, null);
	menu.addItem("taid", "Talents Academy", "Talents Academy",  null, null);
	menu.addItem("linksid", "Quick Links", "Quick Links",  null, null);

	menu.addSubItem("aboutid", "Resume", "Resume",  "resume.php", "");
	menu.addSubItem("aboutid", "Education", "Education",  "education.php", "");
	menu.addSubItem("aboutid", "Experience", "Experience",  "experience.php", "");
	menu.addSubItem("aboutid", "MB in Pictures", "MB in Pictures",  "mbinpics1.php", "");
	menu.addSubItem("aboutid", "Contact", "Contact",  "contact.php", "");

	menu.addSubItem("hrsid", "My Classroom", "My Classroom",  "oops.php", "");
	menu.addSubItem("hrsid", "Class Pictures", "Class Pictures",  "classpics.php", "");
	menu.addSubItem("hrsid", "Classroom Pictures", "Classroom Pictures",  "actpicts.php", "");
	menu.addSubItem("hrsid", "Support Our School", "Support Our School",  "support.php", "");

	menu.addSubItem("currentid", "Message Board", "Message Board",  "oops.php", "");
	menu.addSubItem("currentid", "Web Challenge", "Web Challenge",  "webchal.php", "");
	menu.addSubItem("currentid", "Religion", "Religion",  "rel.php", "");
	menu.addSubItem("currentid", "Pre-Algebra", "Pre-Algebra",  "pa.php", "");
	menu.addSubItem("currentid", "Algebra", "Algebra",  "alg.php", "");

	menu.addSubItem("electivesid", "Baseball Scoring & Statistics", "Baseball Scoring & Statistics",  "bss.php", "");
	menu.addSubItem("electivesid", "Stamp Collecting", "Stamp Collecting",  "stampcollect.php", "");
	menu.addSubItem("electivesid", "Computers - Inside & Out", "Computers - Inside & Out",  "compio.php", "");
	menu.addSubItem("electivesid", "Digital Photography", "Digital Photography", "digitalphoto.php", "");
	menu.addSubItem("electivesid", "Build Your Own Webpage", "Build Your Own Webpage",  "webpage.php", "");

	menu.addSubItem("taid", "Video Game Design", "Video Game Design",  "vgdesign.php", "");
	menu.addSubItem("taid", "Fixing Photos", "Fixing Photos",  "fixphotos.php", "");
	menu.addSubItem("taid", "Programming with Python", "Programming with Python",  "pythonprog.php", "");
	menu.addSubItem("taid", "Computers - Inside & Out", "Computers - Inside & Out",  "compio.php", "");
	menu.addSubItem("taid", "Build Your Own Webpage", "Build Your Own Webpage",  "webpage.php", "");

	menu.addSubItem("linksid", "Holy Redeemer School", "Holy Redeemer School",  "http://www.holyredeemerschools.com", "");
	menu.addSubItem("linksid", "RenWeb Login", "RenWeb Login",  "http://www.renweb.com/ParentsWebold.htm", "");
	menu.addSubItem("linksid", "Google", "Google",  "http://www.google.com", "");

	menu.showMenu();
}
