content.removeAll();
content.add(emptyContentPanel , "emptyPanel");
for(int i=0; i < model.getSize(); i++){
PageModel pm = model.getPageAt(i);
JButton button = new JButton(pm.getPageTitle(), pm.getPageIcon());
button.setHorizontalAlignment(SwingConstants.LEFT);
button.addActionListener( new StackTabAction(pm));
tabsPanel.addOnCurrentRow(button, 1, true, false, true);
content.add(pm.getPageContent(), pm.getPageTitle());
tabs.add(button);
}
selectionHasChanged();
}