if (TransMenu.isSupported()) {

    var ms = new TransMenuSet(TransMenu.direction.down, 0, 0, TransMenu.reference.bottomLeft);

    var menu1 = ms.addMenu(document.getElementById("about2"));
    menu1.addItem("President's Message", "http://www.elyriarotary.com/about/");
    menu1.addItem("History", "http://www.elyriarotary.com/about/history.shtml");
    
menu1.addItem("ERC Archive", "http://www.elyriarotary.com/about/ercarchive.shtml");
    menu1.addItem("Officers", "http://www.elyriarotary.com/about/officers.shtml");
    menu1.addItem("By-laws and Constitution", "http://www.elyriarotary.com/about/by-laws_constitution.shtml");
  menu1.addItem("Information For Speakers", "http://www.elyriarotary.com/about/information_for_speakers.shtml");
    menu1.addItem("Contact Us", "http://www.elyriarotary.com/about/contact-us.shtml");

    var menu2 = ms.addMenu(document.getElementById("calendar2"));
    menu2.addItem("Major Events", "http://www.elyriarotary.com/calendar/");
    menu2.addItem("Weekly Programs", "http://www.elyriarotary.com/calendar/weekly-programs.shtml");
    menu2.addItem("Area Make-ups", "http://www.elyriarotary.com/calendar/area-make-ups.shtml");

    var menu3 = ms.addMenu(document.getElementById("newsletter2"));
    menu3.addItem("Ramrod Newsletter", "http://www.elyriarotary.com/newsletter/ramrod.shtml");
    menu3.addItem("Forms", "http://www.elyriarotary.com/newsletter/forms.shtml");

    var menu4 = ms.addMenu(document.getElementById("membership2"));
    menu4.addItem("How to Join", "http://www.elyriarotary.com/membership/join.shtml");
    menu4.addItem("Membership Directory", "http://www.elyriarotary.com/membership/members.shtml");

    var menu5 = ms.addMenu(document.getElementById("rotary-at-work2"));
    // menu5.addItem("Centenail Project", "http://www.elyriarotary.com/rotary-at-work/centenail-project.shtml");
    menu5.addItem("Avenues of Service", "http://www.elyriarotary.com/rotary-at-work/avenues-of-service.shtml");
    // menu5.addItem("Committees", "http://www.elyriarotary.com/rotary-at-work/committees.shtml");

    TransMenu.renderAll();
}