super("mainmenu");
String s = "Main Menu. You can say: choose character, voting results, call statistics, speakright, or goodbye.";
QuestionFlow quest = new QuestionFlow("inline:character results statistics speakright goodbye", s);
setChoiceQuestion(quest);
addChoice("character", new AppEvent(App.BRANCH_START_AGAIN));
addChoice("results", new VotingResultsList());
addChoice("statistics", new PromptFlow("This feature has not yet been implemented.")); //new CustomEvent("restart"));
addChoice("speakright", new PromptFlow("SpeakRight is an open-source Java framework for speech applications using Voice XML."));
addChoice("goodbye", new DisconnectFlow("Goodbye."));
}