//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("school", "School Info", "School Info",  null, null);
	menu.addItem("staff", "Staff Use", "Staff Use",  null, null);
	menu.addItem("student", "Students", "Students",  null, null);
	menu.addItem("library", "Library ", "Library",  null, null);
	menu.addItem("athletics", "Athletics", "Athletics",  null, null);
	menu.addItem("cool", "Cool Sites", "Cool Sites",  null, null);	
	menu.addItem("summer", "Summer Info", "Summer Info",  null, null);

	menu.addSubItem("school", "Band Information", "Band Information",  "band.htm", "");
        menu.addSubItem("school", "Calendar & Schedule", "2006-2007 School Year Calendar",  "calendar0607.htm", "");
	menu.addSubItem("school", "Challenge & Enrichment", "Challenge & Enrichment",  "challengeandenrichment.htm", "");
        menu.addSubItem("school", "Club Information", "Club Information",  "Club Information.htm", "");   
	menu.addSubItem("school", "Forms/Letters", "Forms/Letters",  "backtoschool.htm", "");
        menu.addSubItem("school", "Guidance Office", "Guidance Office",  "Guidance Office.htm", "");
        menu.addSubItem("school", "HSA, MAC, MEF", "HSA,MAC, MEF",  "HSAPAGE.htm", "");
        menu.addSubItem("school", "Lunch Menu", "Lunch Menu",  "lunch.htm", "");
       	menu.addSubItem("school", "Nurse Forms", "Nurse Forms",  "nurseforms.htm", "");
        menu.addSubItem("school", "Teachers/Staff Directory", "Teachers/Staff Directory",  "teachers.htm", "");
	menu.addSubItem("school", "7th Grade", "7th Grade",  "7forms.htm", "");
	menu.addSubItem("school", "8th Grade", "8th Grade",  "8forms.htm", "");
        menu.addSubItem("school", " ", "null",  "null", ""); 
                	        
	menu.addSubItem("staff", "Teacher Links", "Teacher Links",  "coolteacherpage.htm", "");
	menu.addSubItem("staff", "ABC News", "ABC News",  "http://www.abcnews.com", "");
	menu.addSubItem("staff", "MSNBC", "MSNBC",  "http://www.msnbc.com", "");
	menu.addSubItem("staff", "CBS news", "CBS News",  "http://www.cbsnews.com", "");
	menu.addSubItem("staff", "Google News", "Google News",  "http://www.news.google.com", "");
        menu.addSubItem("staff", " ", "null",  "null", ""); 


	menu.addSubItem("student", "7th Grade", "7th Grade",  "7forms.htm", "");
	menu.addSubItem("student", "8th Grade", "8th Grade",  "8forms.htm", "");
	menu.addSubItem("student", "Clubs/Activities", "Club/Activities",  "Club%20Information.htm", "");
        menu.addSubItem("student", "Practice Keyboarding", "Practice Keyboarding",  "typing.htm", "");
        menu.addSubItem("student", "Student Handbook/Policy", "Student Handbook/Policy",  "studentdoc.htm", "");
        menu.addSubItem("student", "Student Showcase and Photos", "Student Showcase and Photos",  "student.htm", "");
	menu.addSubItem("student", "Writer's Craft", "Writer's Craft",  "writerscraft.htm", "");        
        menu.addSubItem("student", " ", "null",  "null", ""); 
	
	menu.addSubItem("library", "Library", "Library",  "http://decarolibrary.com/", "");
        menu.addSubItem("library", "Battle of the Books", "Battle of the Books",  "bobweb.htm", "");
        menu.addSubItem("library", " ", "null",  "null", ""); 

	menu.addSubItem("athletics", "All Sports Information", "All Sports Information",  "allsports.htm", "");
	menu.addSubItem("athletics", "Baseball", "Baseball",  "baseball.htm", "");
        menu.addSubItem("athletics", "Boys Basketball", "Boys Basketball",  "basketball.htm", "");
	menu.addSubItem("athletics", "Girls Basketball", "Girls Basketball",  "gbasketball.htm", "");
	menu.addSubItem("athletics", "Field Hockey", "Field Hockey",  "fieldhockey.htm", "");
	menu.addSubItem("athletics", "Intramurals", "Intramurals",  "intramurals.htm", "");
	menu.addSubItem("athletics", "Lacrosse", "Lacrosse",  "lacrosse.htm", "");
	menu.addSubItem("athletics", "Boys Soccer", "Boys Soccer",  "soccer.htm", "");
	menu.addSubItem("athletics", "Girls Soccer", "Girls Soccer",  "gsoccer.htm", "");
        menu.addSubItem("athletics", "Softball", "Softball",  "softball.htm", "");
	menu.addSubItem("athletics", "Track and Field", "Track and Field",  "trackfield.htm", "");
	menu.addSubItem("athletics", "Wrestling", "Wrestling",  "wrestling.htm", "");
	menu.addSubItem("athletics", "Find Directions", "Find Directions",  "http://www.mapquest.com/directions/", "");
        menu.addSubItem("athletics", " ", "null",  "null", ""); 
	
	menu.addSubItem("cool", "Cool Sites List", "Cool Sites List",  "cool.htm", "");
	menu.addSubItem("cool", "9-11 Tributes", "9-11 Tribute",  "september11/9-11main.htm", "");
	menu.addSubItem("cool", "Columbia Tribute", "Columbia Tribute",  "columbia.htm", "");
	menu.addSubItem("cool", "Weather Channel", "Weather Channel",  "http://www.weather.com", "");
	menu.addSubItem("cool", "Google", "Google",  "http://www.google.com", "");
	menu.addSubItem("cool", "Google Images", "Google Images",  "http://www.images.google.com", "");

	menu.addSubItem("summer", "Back to School", "Back to School",  "backtoschool.htm", "");
	menu.addSubItem("summer", "Summer Reading/Math", "Summer Reading/Math",  "summerreading.htm", "");
        menu.addSubItem("summer", "Summer Supply List", "Summer Supply List",  "supplies.htm", "");
        menu.addSubItem("summer", "Sun Safety", "Sun Safety",  "nurseforms.htm", "");
        menu.addSubItem("summer", " ", "null",  "null", ""); 

	menu.showMenu();
}