Index: trunk/web-app/js/taskShow.js
===================================================================
--- trunk/web-app/js/taskShow.js	(revision 843)
+++ trunk/web-app/js/taskShow.js	(revision 844)
@@ -14,5 +14,9 @@
         createContainer.find('.pane_close img').click(function(){
             createContainer.slideUp(600);
-            button.show(600);
+            button.show(600, function() {
+                if(jQuery.browser.msie) {
+                    jQuery(this).get(0).style.removeAttribute('filter'); // Remove blur/fuzzy text in IE.
+                }
+            });
         });
 }
@@ -33,5 +37,9 @@
         createContainer.hide();
         listContainer.html(data);
-        button.show(600);
+        button.show(600, function() {
+            if(jQuery.browser.msie) {
+                jQuery(this).get(0).style.removeAttribute('filter'); // Remove blur/fuzzy text in IE.
+            }
+        });
     }
 
@@ -43,6 +51,10 @@
         else {
             createContainer.html(errorIndication().show()).slideDown(600);
+            button.show(600, function() {
+                if(jQuery.browser.msie) {
+                    jQuery(this).get(0).style.removeAttribute('filter'); // Remove blur/fuzzy text in IE.
+                }
+            });
         }
-        button.show(600);
     }
 
@@ -80,5 +92,9 @@
             createContainer.html(errorIndication().show()).slideDown(600);
         }
-        button.show(600);
+        button.show(600, function() {
+            if(jQuery.browser.msie) {
+                jQuery(this).get(0).style.removeAttribute('filter'); // Remove blur/fuzzy text in IE.
+            }
+        });
     }
 
