function menu()
{
    if (bDraft)
    {
        return;
    }
    
// About Menu
    var aboutMenu = new WebFXMenu;
    var historyMenuItem = new WebFXMenuItem("History", "/olas/Files/history-of-olas/engage.html", "History of OlasIT");
    historyMenuItem.target = '_blank';
    aboutMenu.add(new WebFXMenuItem("About Us", "About.htm", "About Us"));
    aboutMenu.add(historyMenuItem);
    aboutMenu.add(new WebFXMenuItem("Client List", "Client.htm", "Client List"));
    aboutMenu.add(new WebFXMenuItem("Testimonials", "Testimonials.htm", "Testimonials"));
    aboutMenu.add(new WebFXMenuItem("The Team", "About-Team.htm", "About The Team"));
    aboutMenu.add(new WebFXMenuItem("Careers", "About-CurrentlyRecruiting.htm", "Careers"));
    aboutMenu.width = 140;

// Contact Menu
    var contactMenu = new WebFXMenu;
    contactMenu.add(new WebFXMenuItem("Contact Olas", "Contact.htm", "Contact Olas"));
    contactMenu.add(new WebFXMenuItem("Olas Location Map", "Location.htm", "Olas Location Map"));
    contactMenu.width = 140;
    
// Schedule Menu
    var scheduleMenu = new WebFXMenu;
    scheduleMenu.add(new WebFXMenuItem("Training Courses 2009", "Training-Catalogue-01.htm", "Training Courses 2009"));
    scheduleMenu.add(new WebFXMenuItem("SAP Schedule 2009", "Sap-Courses-2009-1.htm", "SAP Schedule 2009"));
    scheduleMenu.width = 200;

// Main Menu Bar
    var menuBar = new WebFXMenuBar;
    menuBar.add(new WebFXMenuButton("Home", "Home.htm", "Home"));
    menuBar.add(new WebFXMenuButton("About", null, "About Us", aboutMenu));
    menuBar.add(new WebFXMenuButton("Training Schedules", null, "Schedule of Current Training Courses", scheduleMenu));
    menuBar.add(new WebFXMenuButton("Tips", "Microsoft-Office-Tips.htm", "Tips"));
    menuBar.add(new WebFXMenuButton("Software Development", "SDev.htm", "Software Development"));
    menuBar.add(new WebFXMenuButton("SAP End User", "SAP-EndUser1.htm", "SAP End User"));
    menuBar.add(new WebFXMenuButton("Contact Us", null, "Contact Us", contactMenu));
    
    document.write(menuBar);
}
