optionsMenu = new JMenu(this.properties.getValue("optionsMenu"));
JMenuItem options = new JMenuItem(properties.getValue("options"));
JMenuItem help = new JMenuItem(properties.getValue("help"));
JMenuItem about = new JMenuItem(properties.getValue("about"));
options.addActionListener(new SetOptions(this.properties, MainFrame.myRef));
help.addActionListener(new LaunchHelp());
about.addActionListener(new AboutHamsam());
this.optionsMenu.add(options);
this.optionsMenu.add(help);