//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("FACE", "Face Web site", "Face Web site",  null, null);	
        menu.addItem("gsc", "Gainesville State College", "Gainesville State College", null, null);
        menu.addItem("CLUB", "GSC Clubs", "GSC Clubs",  null, null);
        menu.addItem("searchengineid", "Search Engines", "Search Engines",  null, null);

        menu.addSubItem("FACE", "Homepage", "Homepage",  "http://itec.gc.peachnet.edu/clubs/face/", "");
        menu.addSubItem("FACE", "Meeting Dates", "Meeting Dates",  "http://itec.gc.peachnet.edu/clubs/face/meeting_dates.htm", "");
        menu.addSubItem("FACE", "Photo Album", "Photo Album",  "http://itec.gc.peachnet.edu/clubs/face/Photo_album.htm", "");
        menu.addSubItem("FACE", "Resources for Disabilities", "Resources for Disabilities",  "http://itec.gc.peachnet.edu/clubs/face/help_with_disorders.htm", "");


	menu.addSubItem("CLUB", "Education Club", "Education Club",  "http://itec.gc.peachnet.edu/clubs/education/","");
	menu.addSubItem("CLUB", "CAMPUS CRUSADE for CHRIST", "CAMPUS CRUSADE for CHRIST",  "http://data.gsc.edu/www/clubs/crusade/","");
	menu.addSubItem("CLUB", "Psychology Club", "Psychology Club",  "http://www.francisdj.com/GSCpsycclub/index.html","");
	menu.addSubItem("CLUB", "Politically Incorrect Club", "Politically Incorrect Club",  "http://www.francisdj.com/GSCpiwebsite/index.html","");
	menu.addSubItem("CLUB", "Future Health Professionals", "Future Health Professionals",  "http://itec.gc.peachnet.edu/clubs/fhpclub/fhpclubpage.htm","");

	menu.addSubItem("searchengineid", "AltaVista", "AltaVista",  "http://www.altavista.com", "");
	menu.addSubItem("searchengineid", "Dog Pile", "Dog Pile", "http://www.dogpile.com/", "");
    menu.addSubItem("searchengineid", "Excite", "Excite", "http://www.excite.com", "");
	menu.addSubItem("searchengineid", "Google", "Google",  "http://www.google.com/", "");
	menu.addSubItem("searchengineid", "HotBot", "HotBot",  "http://www.hotbot.com", "");
    menu.addSubItem("searchengineid", "Ixquick", "Ixquick",  "http://www.ixquick.com", "");
	menu.addSubItem("searchengineid", "Lycos", "Lycos",  "http://www.lycos.com", "");
	menu.addSubItem("searchengineid", "MSN", "MSN",  "http://www.msn.com", "");
    menu.addSubItem("searchengineid", "Yahoo", "Yahoo",  "http://www.yahoo.com/", "");
	menu.addSubItem("searchengineid", "Webcrawler", "Webcrawler",  "http://www.webcrawler.com", "");

	menu.addSubItem("gsc", "Gaineville State Web", "Gaineville State Web",  "http://www.gc.peachnet.edu/", "");
	menu.addSubItem("gsc", "Disability Services", "Disability Services",  "http://www.gsc.edu/studev/disability/", "");
	menu.addSubItem("gsc", "Academic Computing, Tutoring, & Testing (ACTT) Center ", "Academic Computing, Tutoring, & Testing (ACTT) Center ",  "http://www.gsc.edu/actt/main/", "");	
	menu.addSubItem("gsc", "Counseling & Career Services", "Counseling & Career Services",  "http://www.gsc.edu/studev/counseling/", "");
    menu.addSubItem("gsc", "Library", "Library",  "http://www.gsc.edu/library/main/", "");
	menu.addSubItem("gsc", "Bookstore", "Bookstore",  "http://www.gsc.edu/admin/bookstore/", "");
	menu.addSubItem("gsc", "Fitness Center", "Fitness Center",  "http://www.gsc.edu/edhealthwellness/main/fitness_center.htm", "");
	menu.addSubItem("gsc", "Financial Aid", "Financial Aid",  "http://www.gsc.edu/studev/finaid/", "");

   menu.showMenu();
}