//Add the logo
logo = new JLabel(new ImageIcon("controlpanellogo.png"));
sidePanel.add(logo,BorderLayout.NORTH);
//Add the projects table
projectsTable = new ProjectListTable();
table = new JTable(projectsTable);
table.setPreferredScrollableViewportSize(new Dimension(200, 200));
table.setFillsViewportHeight(true);
table.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
JScrollPane tableOverflow = new JScrollPane(table);