I have had a problem similar to this a few years ago. What caused it for me:
- hovering over a link in a menu
- menu item changes size ever-so-slightly by adding a 1px border, creating an underline, becoming italicized, etc..
- new size of item caused the outside container to become a few pixels wider than the declared width
- footer/other content floats up because there are a few extra pixels OR
- something on the same height of the menu is kicked down a below the container-object and throws a wrench in the rest of the flow
Hope my experience helps!
edit
Yes, I did fix it.. It was a mess, but basically involved going through each :hover selector and making sure that absolutely nothing changed -- except the colors involved. I also remember that I needed to re-declare and width: nnpx; height: nnpx; in the :hover selector.
Man! Love programming for old browsers!