function loadMenus ()
{
    window.company = new Menu("company");
    company.addMenuItem("Company History", "location='company.html'");
    company.addMenuItem("FAQs", "location='company1.html'");
    company.addMenuItem("Newsroom", "location='company2.html'");
    company.addMenuItem("Executive Biographies", "location='bios.html'");
    //company.addMenuItem("New Restaurant Development", "location='company4.html'");
    //company.addMenuItem("Legal & Privacy", "location='company5.html'");

    window.food = new Menu("food");
    food.addMenuItem("Breakfast Anytime", "location='menu0.html'");
    food.addMenuItem("Lunch & Dinner Too", "location='menu1.html'");
    food.addMenuItem("The Dessert Tray", "location='menu2.html'");
    //food.addMenuItem("Kids Corner", "location='menu3.html'");

    window.franchise = new Menu("franchise");
	franchise.addMenuItem("I am a leet javascript haxor!", "location=''");
    //franchise.addMenuItem("Franchise Programs", "location='franchise.html'");
    //franchise.addMenuItem("FAQ", "location='franchise1.html'");
    //franchise.addMenuItem("Training & Support", "location='franchise2.html'");
    //franchise.addMenuItem("Request Info Form", "location='franchise3.html'");

    window.investor = new Menu("investor");
    investor.addMenuItem("Annual Reports", "location='cfoisbum.html'");
    investor.addMenuItem("Analyst Coverage", "location='cfoisbum.html'");
    investor.addMenuItem("SEC Filings", "location='cfoisbum.html'");
    investor.addMenuItem("Conference Calls and Presentations", "location='cfoisbum.html'");

    investor.writeMenus();
}
