//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("home", "Home", "Home", "index.shtml", "");
	menu.addItem("donow", "Do This Now", "Do This Now",  null, null);
	menu.addItem("HEA", "HEA Info", "HEA Info",  null, null);
	menu.addItem("involve", "Get Involved", "Get Involved",  null, null);
	menu.addItem("law", "The Law", "The Law",  null, null);
	menu.addItem("Campaign", "The Campaign", "The Campaign",  null, null);
	menu.addItem("media", "Media Info", "Media Info",  null, null);
	menu.addItem("contact", "Contact Us", "Contact Us",  "contactus.shtml", "");

	menu.addSubItem("donow", "Contact Congress Now", "Contact Congress Now", "takeaction", "");
	menu.addSubItem("donow", "Endorse the Campaign", "Endorse the Campaign",  "endorse-index.shtml", "");
	menu.addSubItem("donow", "Link Up to Us", "Link Up to Us",  "linkuptous.html", "");

	menu.addSubItem("HEA", "What is HEA?", "What is HEA?",  "heainfo.shtml", "");
	menu.addSubItem("HEA", "HAVE YOU LOST YOUR AID?", "HAVE YOU LOST YOUR AID?",  "haveyoulost.shtml", "");
	menu.addSubItem("HEA", "Determine Eligibility", "Determine Eligibility",  "eligibility.shtml", "");
	menu.addSubItem("HEA", "John W. Perry Fund", "John W. Perry Fund",  "Perry-index.html", "");
	menu.addSubItem("HEA", "CHEAR Fact Sheet", "CHEAR Fact Sheet",  "factsheets.shtml", "");

	menu.addSubItem("involve", "Write Your Rep", "Write Your Rep",  "takeaction", "");
	menu.addSubItem("involve", "Tell Your Friends", "Tell Your Friends",  "tellafriend.shtml", "");
	menu.addSubItem("involve", "Letter to the Editor", "Letter to the Editor",  "lettereditor.shtml", "");
	menu.addSubItem("involve", "Students", "Students",  "students.shtml", "");
	menu.addSubItem("involve", "Non-Students", "Non-Students",  "nonstudents.shtml", "");

	menu.addSubItem("law", "HEA Drug Provision", "HEA Drug Provision",  "484f.shtml", "");
	menu.addSubItem("law", "FAFSA Question Worksheet", "FAFSA Question Worrksheet",  "http://www.fafsa.ed.gov/before013.htm", "_blank");
	menu.addSubItem("law", "Pending Legislation in Current Congress", "Pending Legislation in New Congress", "currleg.shtml", "");
	menu.addSubItem("law", "H.R. 1184", "H.R. 1184",  "1184.shtml", "");

	menu.addSubItem("Campaign", "Repeal Supporters", "Repeal Supporters",  "supporters.shtml", "");
	menu.addSubItem("Campaign", "Student Government Endorsers", "Student Government Endorsers",  "studentendorse.shtml", "");

	menu.addSubItem("media", "Press Releases", "Press Releases",  "mediainfo.shtml", "");
	

	menu.showMenu();
}
