Demo here:
I want the blue menu bar to stick to the top of the page when you scroll past it, and then to snap back to its original position when you scroll back up over it. In every other browser I've tested, having jQuery conditionally switch the menu's position from relative to fixed works. But it doesn't work in IE7.
To test, I've tried removing all the JavaScript and setting the position to fixed in the CSS. This looks as it should in IE7.
Also to test, I've had the condition if ($('table#menu').position().top + 10 <= $(window).scrollTop()) trigger an alert. It works, meaning that IE7 recognizes the event.
So the CSS I want works statically, and the JavaScript condition is working. Any ideas on what the issue could be?