// For IE 6 (& possibly 7): Play hide & seek with the drop down menu so that // after window resizing, the menu does not disappear. jQuery(window).resize(function() { if ( document.all && document.getElementById ) { root = document.getElementById( "root0" ); if ( root && root.style && root.style.visibility ) { root.style.visibility = "hidden"; root.style.visibility = "visible"; } } });