If you go to this site http://rochesterwaterskishow.com/staging, hover over the about link in FF or Chrome and you can see that a menu popsup. When you do the same thing in IE8, the menu does not show. I have not checked IE7.
What is causing the menu not to show in IE8?
jQuery:
$('#flyout').hover(function() {
$(this).children('div').show();
}, function() {
$(this).children('div').hide();
});
Funnily enough, the bug is not in the menu or your jQuery expression at all. It’s in a line above:
There’s no closing
</a>here, which makes IE throw a wobbly. Fix that up and you should be good to go.