//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", "Return to the Card Office Home Page",  "../index.html", null);
	menu.addItem("info", "Card Information", "Information about the University Card Office",  null, null);
	menu.addItem("money", "Money", "Hoot Loot & Food Loot",  null, null);
	menu.addItem("vendor", "Where to Use", "Hoot Loot Accepted Here",  null, null);
	menu.addItem("cardoff", "Card Office", "Information about the University Card Office",  null, null);
	menu.addItem("parents", "Parents", "Information Especially for Parents",  null, null);
	menu.addItem("sa", "Student Advantage", "Learn more about Student Advantage at SCSU",  null, null);
	menu.addItem("mycard", "MyCard Online", "Access Your Hoot Loot Card Information Online",  null, null);

	menu.addSubItem("info", "About the Card", "Learn about the Hoot Loot ID Card",  "../info/about_the_card.htm", "");
	menu.addSubItem("info", "Building Access", "Learn about Building Access",  "../info/building_access.htm", "");
	menu.addSubItem("info", "Frequent Questions", "Frequently Asked Questions",  "../info/frequent_questions.htm", "");
	menu.addSubItem("info", "Library Access", "Learn about using your card at SCSU's library",  "../info/library_access.htm", "");
	menu.addSubItem("info", "Lost/Stolen Cards", "What to do when your card is lost or stoeln",  "../info/lost_or_stolen_cards.htm", "");
	menu.addSubItem("info", "Meal Plans", "Learn about Food Loot and other meal plans",  "../info/meal_plans.htm", "");
	menu.addSubItem("info", "Obtain Your Card", "Learn how to get your Hoot Loot ID Card",  "../info/obtain_your_card.htm", "");	
	menu.addSubItem("info", "Terms of Agreement", "Important Information about your Hoot Loot ID Card",  "../info/terms_of_agreement.htm", "");	

	menu.addSubItem("money", "Add Money", "Add money to a Hoot Loot Card",  "../money/add_money.htm", "");
	//menu.addSubItem("money", "Add Money", "Add money to a Hoot Loot Card",  "../down_for_main.htm", "");
	menu.addSubItem("money", "Financial Aid Request", "Add money from excess Financial Aid",  "../money/request.htm", "");	
	//menu.addSubItem("money", "Financial Aid Request", "Add money from excess Financial Aid",  "../down_for_main.htm", "");		
	menu.addSubItem("money", "Food Loot", "Learn about Food Loot",  "../money/food_loot.htm", "");
	menu.addSubItem("money", "Hoot Loot", "Learn about Hoot Loot",  "../money/hoot_loot.htm", "");
	menu.addSubItem("money", "Gift Certificates", "Give the gift of Hoot Loot, a perfect fit",  "../money/gift_certificates.htm", "");
	menu.addSubItem("money", "MyCard Online", "Manage your Hoot Loot Account Online",  "https://www.southernct.edu/departments/hootloot/WebApps/phpMyCard/myCard.php", "_blank");
	//menu.addSubItem("money", "MyCard Online", "Manage your Hoot Loot Account Online",  "../down_for_main.htm", "");
	menu.addSubItem("money", "Refunds", "Learn about Hoot Loot or vending refunds ",  "../money/refunds.htm", "");

	menu.addSubItem("vendor", "On Campus Locations", "Use your Hoot Loot Card on campus",  "../vendor/on_campus.htm", "");
	menu.addSubItem("vendor", "Off Campus Locations", "Use your Hoot Loot Card off campus",  "../vendor/off_campus.htm", "");
	menu.addSubItem("vendor", "Join the Program", "Learn how your business can accept Hoot Loot payments",  "../vendor/join.htm", "");	
	
	menu.addSubItem("cardoff", "Contact Us", "How to get in touch with the University Card Office",  "../office/contact_us.htm", "");
	menu.addSubItem("cardoff", "Download Forms", "Download one of our office forms to return to us",  "../office/download_forms.htm", "");	
	menu.addSubItem("cardoff", "Hours of Operation", "Find out when we're opne late to better serve you",  "../office/hours_of_operation.htm", "");
	menu.addSubItem("cardoff", "Office Staff", "Find out who we are",  "../office/staff.htm", "");

	menu.addSubItem("parents", "Parents' Guide", "Parents' Guide to Hoot Loot",  "../parent/guide.htm", "");
	menu.addSubItem("parents", "Frequent Questions", "Parents' Frequently Asked Questions",  "../parent/faq.htm", "");
	menu.addSubItem("parents", "Add Money Anytime", "Parents can add money to their student's Hoot Loot Card anytime",  "../money/add_money.htm", "");
	//menu.addSubItem("parents", "Add Money Anytime", "Parents can add money to their student's Hoot Loot Card anytime",  "../down_for_main.htm", "");
		
	menu.addSubItem("sa", "About Student Advantage", "Student Advantage Discount Card Membership Program",  "../sa/sa_main.htm", "");
	menu.addSubItem("sa", "Terms of Use", "TERMS of USE for the SCSU Student Advantage Card",  "../sa/sa_terms.htm", "");
	menu.addSubItem("sa", "Enroll / Sign Up", "Start Saving Today!",  "../sa/sa_main.htm#enroll", "");
	menu.addSubItem("sa", "Activate Membership", "Activate Your Student Advantage Membership!",  "https://www.studentadvantage.com/activation/scsu", "_blank");
	
	menu.addSubItem("mycard", "Log In", "Click here to log into your MyCard Online account",  "https://www.southernct.edu/departments/hootloot/WebApps/phpMyCard/myCard.php", "_blank");
	//menu.addSubItem("mycard", "Log In", "Click here to log into your MyCard Online account",  "../down_for_main.htm", "");	
	menu.addSubItem("mycard", "Account Security", "Account security information",  "../info/mycard_security.htm", "");	
	menu.addSubItem("mycard", "How to Log In", "Information on how to log in to MyCard Online",  "../info/mycard_login.htm", "");	
	menu.addSubItem("mycard", "Help", "Information about MyCard Online",  "../info/mycard_help.htm", "");
	menu.showMenu();
}