panels = new ArrayList();
}
public void addPanel(JCascadePanel panel) {
JButton button = panel.getButton();
JScrollPane scrollPane = new JScrollPane(panel);
final JPanel container = new JPanel(new BorderLayout());
container.add(scrollPane, BorderLayout.CENTER);
button.setMaximumSize(new Dimension(LFConstants.MAX_WIDTH, LFConstants.DEFAULT_HEIGHT));
button.setAlignmentX(1.0f);