imgButton.setImage(Toolkit.getDefaultToolkit().getImage(
"data/images/camo/Wood1.jpg"));
panel.add(imgButton);
// Create a "no camo" button on the panel.
color = new SizedButton("No Camo", new Dimension(84, 72));
color.setBackground(Color.green);
color.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent event) {
camo.setBackground(color.getBackground());
camo.setLabel(color.getLabel());