// The menu item for the avatar configuration
avatarConfigMI = new JMenuItem(bundle.getString("Avatar_Appearance..."));
avatarConfigMI.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
AvatarConfigFrame f = new AvatarConfigFrame();
f.setVisible(true);
}
});
// Check box to set collision enabled
collisionResponseEnabledMI = new JCheckBoxMenuItem(bundle.getString("Avatar_Collision_Response_Enabled"));