function Init()
{   
    var menu0 = new Menu('About', 'about/');       
    menu0.Add(new Menu('Mission', 'about/mission.html'));
    menu0.Add(new Menu('Superintendent letter', 'about/superintendant.html'));
    menu0.Add(new Menu('School Calendar', 'about/calendar.html'));
    menu0.Add(new Menu('Maps & Directions', 'about/maps.html'));
    menu0.Add(new Menu('ACT & Iowa Scores', 'about/scores.html'));
    menu0.Add(new Menu('Faculty & Staff', 'about/faculty.html'));
    menu0.Add(new Menu('Employment Opportunities', 'about/employement.html'));
    menu0.Add(new Menu('Accreditation', 'about/accreditation.html'));
    menu0.Add(new Menu('Christian Services', 'about/services.html'));
    menu0.Add(new Menu('Contact info', 'about/contact.html'));

            
    var menu1 = new Menu('Admissions', 'admissions/');
    menu1.Add(new Menu('Applications', 'admissions/applications.html'));
    menu1.Add(new Menu('Request Info', 'admissions/info.html'));
    menu1.Add(new Menu('Re-enrollment', 'admissions/reenrollment.html'));
    menu1.Add(new Menu('Dorm Information', 'admissions/dorminfo.html'));
    menu1.Add(new Menu('Dorm Handbook', 'admissions/dormhandbook.pdf'));
    menu1.Add(new Menu('TADS', 'admissions/tads.html'));
    menu1.Add(new Menu('Financial Aid Request', 'admissions/finaid.html'));
    menu1.Add(new Menu('FAQ', 'admissions/faq.html'));


    var menu2 = new Menu('Academics', 'academics/');
    menu2.Add(new Menu('School News', 'academics/news.html'));
    menu2.Add(new Menu('Chapel', 'academics/chapel.html'));
    menu2.Add(new Menu('Edline', 'academics/edline.html'));

    var menu2_0 = new Menu('High School', 'academics/highschool/');
        menu2_0.Add(new Menu('Curriculum', 'academics/highschool/curriculum.html'));
        menu2_0.Add(new Menu('Handbook', 'academics/highschool/handbook.pdf'));
        menu2_0.Add(new Menu('School Calendar', 'academics/highschool/calendar.html'));
        menu2_0.Add(new Menu('Advising & College Guidance', 'academics/highschool/advising.html'));
        menu2_0.Add(new Menu('Lunches', 'academics/highschool/lunches.html'));
        menu2_0.Add(new Menu('Fine Arts', 'academics/highschool/arts.html'));
        menu2_0.Add(new Menu('Student Organization Listings', 'academics/highschool/listings.html'));
        menu2_0.Add(new Menu('PFTA', 'academics/highschool/pfta.html'));
        menu2_0.Add(new Menu('Technology', 'academics/highschool/technology.html'));
        menu2_0.Add(new Menu('Traffic Map', 'academics/highschool/traffic.html'));
        menu2_0.Add(new Menu('Meet the Principal', 'academics/highschool/principal.html'));
        menu2_0.subMenu = true;
        menu2.Add(menu2_0);

            
    var menu2_1 = new Menu('Elementary', 'academics/elementary/');
        menu2_1.Add(new Menu('Curriculum', 'academics/elementary/curriculum.html'));
        menu2_1.Add(new Menu('Handbook', 'academics/elementary/handbook.pdf'));
        menu2_1.Add(new Menu('School Calendar', 'academics/elementary/calendar.html'));
        menu2_1.Add(new Menu('Lunches', 'academics/elementary/lunches.html'));
        menu2_1.Add(new Menu('Extra Curricular', 'academics/elementary/extracurricular.html'));
        menu2_1.Add(new Menu('PFTA', 'academics/elementary/pfta.html'));
        menu2_1.Add(new Menu('Technology', 'academics/elementary/technology.html'));
        menu2_1.Add(new Menu('Pickup & Drop off', 'academics/elementary/pickup.html'));
        menu2_1.Add(new Menu('Meet the Principal', 'academics/elementary/principal.html'));
        menu2_1.subMenu = true;
        menu2.Add(menu2_1);
        
       
    var menu2_2 = new Menu('ELC', 'academics/elc/');  
        menu2_2.Add(new Menu('Handbook', 'academics/elc/handbook.pdf'));
        menu2_2.Add(new Menu('Enrollment', 'academics/elc/enrollment.html'));
        menu2_2.Add(new Menu('Tuition', 'academics/elc/tuition.html'));
        menu2_2.subMenu = true;
        menu2.Add(menu2_2);
        
    
    var menu3 = new Menu('Athletics', 'athletics/');    
    menu3.Add(new Menu('Meet the Athletic Director', 'athletics/director.html'));  
    menu3.Add(new Menu('Sports News', 'athletics/news.html'));  
    menu3.Add(new Menu('Athletic Calendar', 'athletics/calendar.html'));  
    menu3.Add(new Menu('Maps & Directions', 'athletics/maps.html'));  
    menu3.Add(new Menu('Teams & Schedules', 'athletics/schedules.html'));  
    
    
    var menu4 = new Menu('Advancement', 'advancement/');    
    menu4.Add(new Menu('Alumni', 'advancement/alumni.html'));  
    menu4.Add(new Menu('Fundraising Events', 'advancement/fundraising.html'));  
    menu4.Add(new Menu('Partnership Dinner', 'advancement/partnership.html'));  
    menu4.Add(new Menu('Ways to Give', 'advancement/giving.html'));  
    menu4.Add(new Menu('Building Project', 'advancement/building.html'));  

    var menu = new Menu();
    menu.Add(menu0);
    menu.Add(menu1);
    menu.Add(menu2);       
    menu.Add(menu3);
    menu.Add(menu4);

    var menuContainer = document.getElementById('menuContainer'); 
    menuContainer.appendChild(menu.Root('menu'));

   
}    