========
    Left Mouse Up Event
	ViewMenu.{anon month item listener}.actionPerformed
	    ViewUI.getMonthlyAgendaDisplay
	    MonthlyAgendaDisplay.show
	    MonthlyAgendaDisplay.update

		// Clear and set rows
		Arrays.fill
		JPanel.removeAll
		GridLayout.setRows

		// Put empty grey boxes up to 1st day
		MonthlyAgenda.getFirstDay
		SmallDayView.getDay
		DayName.getPosition
		greyDay
		JPanel.add

		// Populate rest of day grid
		MonthlyAgenda.getNextDay
		SmallDayViewDisplay
		    JPanel
		    JPanel.setLayout
		    BoxLayout
		    JLabel
		    SmallDayView.getDate
		    JLabel.setForground
		    JLabel.setBackground
		    JLabel.setFont
		    JList
		    JPanel.add
		    JPanel.setBackground
		    JPanel.setBorder
		DayViewDisplay.getWidget
		JPanel.add

		Window.getContentPane	// Set the grid size
		Container.setBackground
		JPanel.setPreferredSize
		Window.pack