While doing my styling, I realized the menu is going to be much longer than the space I have allotted for it in the design. I used the technique listed at http://www.htmlite.com/faq015.php to make the menu div scrollable. Here’s the CSS:
.menu { height: 700px; /* Same height as content div */ overflow: auto; }
Here’s what it looks like:
I’m not sure I like what it looks like, and I may replace it with some nicer Javascript. For now, however, it works.