Index: panels.js
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/panels/js/Attic/panels.js,v
retrieving revision 1.1.2.1
diff -u -r1.1.2.1 panels.js
--- panels.js	6 Dec 2007 16:13:30 -0000	1.1.2.1
+++ panels.js	8 Jan 2008 19:13:09 -0000
@@ -3,12 +3,15 @@
 Drupal.Panels = {};
 
 Drupal.Panels.autoAttach = function() {
-  $("div.panel-pane").hover(
-    function() { 
-      $('div.panel-hide', this).addClass("hover"); 
-    }, 
-    function(){ 
-      $('div.panel-hide', this).removeClass("hover"); 
+  // Using .hover seems to mess with the href in statusbar when hovering over links in FF.
+  $("div.panel-pane").mouseover(
+    function() {
+      $('div.panel-hide', this).addClass("hover"); return true;
+    }
+   );
+   $("div.panel-pane").mouseout(
+    function(){
+      $('div.panel-hide', this).removeClass("hover"); return true;
     }
   );
 }

