Index: /branches/release-28/mt-static/mt.js
===================================================================
--- /branches/release-28/mt-static/mt.js (revision 1280)
+++ /branches/release-28/mt-static/mt.js (revision 1285)
@@ -1487,5 +1487,5 @@
                 DOM.addClassName( flyout, "hidden" );
                 this.openFlyouts.remove( es[ i ] );
-                showDropDown();
+                showAllDropDown();
             }
         }
@@ -1532,5 +1532,6 @@
                 this.targetElement = null;
 
-                hideDropDown();
+                hideAllDropDown();
+                showDropDown( el );
                 this.openFlyouts.add( name );
 
@@ -2246,5 +2247,5 @@
 
         /* actually hides select boxes, not the dropdown */
-        hideDropDown();
+        hideAllDropDown();
         this.inTimer = null;
         this.outTimer = null;
@@ -2265,5 +2266,5 @@
 
         /* actually shows select boxes, not the dropdown */
-        showDropDown();
+        showAllDropDown();
         this.outTimer = null;
         this.inTimer = null;
@@ -2810,5 +2811,5 @@
 }
 
-function hideDropDown() { // hides SELECT lists under the nav on IE6
+function hideAllDropDown() { // hides SELECT lists under the nav on IE6
     if((/MSIE/.test(navigator.userAgent)) && parseInt(navigator.appVersion)==4) {
         var dd = document.getElementsByTagName('select');
@@ -2820,5 +2821,5 @@
 }
 
-function showDropDown() {
+function showAllDropDown() {
     if ((/MSIE/.test(navigator.userAgent)) && parseInt(navigator.appVersion)==4) {
         var dd = document.getElementsByTagName('select');
@@ -2828,4 +2829,14 @@
     }
 	return;
+}
+
+function showDropDown(el) {
+    if ((/MSIE/.test(navigator.userAgent)) && parseInt(navigator.appVersion)==4) {
+        var dd = el.getElementsByTagName( "select" );
+        for ( var i = 0; i < dd.length; i++ ) {
+            dd[i].style.visibility = 'visible';
+        }
+    }
+    return;
 }
 
