top = new Box(BoxLayout.Y_AXIS);
toolBar.setAlignmentX(0.0f); // so it is left justified
top.add(toolBar);
JToolBar viewToolBar = getMenuManager().getToolBar(MenuManager.VIEW_TOOL_BAR_WITH_NO_SUB_VIEW_OPTION);
topTabs = new TabbedNavigation();
JComponent tabs = topTabs.createContentPanel(getMenuManager(),viewToolBar,0,JTabbedPane.TOP,true);
tabs.setAlignmentX(0.0f); // so it is left justified
top.add(tabs);
bottom = new TabbedNavigation().createContentPanel(getMenuManager(),viewToolBar,1,JTabbedPane.BOTTOM,false);
contentPane.add(top, BorderLayout.BEFORE_FIRST_LINE);
contentPane.add(bottom,BorderLayout.AFTER_LAST_LINE);
if (Environment.isNewLaf())
contentPane.setBackground(Color.WHITE);