As an experiment, I've modified the layout of Unbecoming Levity to use collapsible sidebars.  This allows me to use more screen real estate for the actual content of the articles.  What do you think of this look?  Better?  Worse?  Please share your comments...

Making collapsible sections was easy.  First I had to write a little javascript function which I called CComponentToggle.  Click this expander to see the necessary javascript:

When this function is called and passed an ID like "sample", it goes and looks for an image with the ID "CCI_sample".  It checks to see what the image looks like.  If it is an "expand" image (), that means the user is trying to expand a hidden section.  If it is a collapse image (), that means the user is trying to collapse a section.  Once it makes that determination, the function goes looking for an element with the ID "CCC_sample" and either makes it visible or invisible as necessary.  Then it modifies the original image the user clicked on to change the expander into a collapser or vice versa.

Pretty simple.  Of course I'm concerned about compatibility across different browsers, so if anyone can offer tips as to how to modify this function to make it as compatible as possible, I'm all ears.