item = new JMenuItem(name, new ImageIcon(image));
}
// Try to make the menu item look a bit nicer
item.setBorder(BorderFactory.createEmptyBorder(2, 5, 2, 7));
item.addMouseListener(new LabelListener(name));
// If the state of the menu item is "DISABLED" then grey out the item
item.setEnabled(isEnabled);
// Add the item to the menu