A couple people have noticed that the Bloglines link now goes to a list of my students' blogs, and were unhappy about that.
Not to worry; later this week the blogroll is coming back, in an expandable box on the sidebar so that it doesn't take over the page for people not that interested in the links.

Hey, there must be a disturbance in the Force or something: I'm doing that too.
Liz - out of curiosity, how did you set up the collapsible links?
I stole the code (with permission) from Joi Ito's site.
It's all javascript; just view my source to see it.
Wow, that collapsible links code looks much more complex than it needs to be. I wrote this one a few years ago for our JavaScript book, and all the code is there for anyone to use who wants it.
Oh, and thanks for putting me on the blogroll!
Thanks!
function changeVisibility(container) {
if (document.getElementById(container).style.display == "none" ? document.getElementById(container).style.display = "block" : document.getElementById(container).style.display = "none");
}
Just place a call to changeVisibility in any onClick method and pass the div id that you want to change. :-)
Note: this can be fussy sometimes for whatever reason.