This is the problem I was talking about, and you may not care because not everyone will have a screen this wide:
PHP Code:
http://www.thisdepravedworld.com/graphics/news-items/07-05/float-problem.jpg
It's because you have things floated in the center column, so as it expands things start breaking. A
possible fix would be to instead of floating images in the center column, to assign them an align="left" and deal with the issues that creates (I've done that myself on a project).
This all stems from the fact that floated objects fall out of the document flow which means in essence that they are no longer contained by their container (which I think sucks ass).
