Index: css/panels.css
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/panels/css/Attic/panels.css,v
retrieving revision 1.1.2.3
diff -u -r1.1.2.3 panels.css
--- css/panels.css	11 Dec 2007 21:02:35 -0000	1.1.2.3
+++ css/panels.css	10 Jan 2008 17:02:14 -0000
@@ -33,7 +33,7 @@
   display: none;
 }
 
-div.panel-pane div.hover {
+div.panel-pane div.panel-hide-hover {
   display: block;
   position: absolute;
   z-index: 200;
Index: js/panels.js
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/panels/js/Attic/panels.js,v
retrieving revision 1.1.2.4
diff -u -r1.1.2.4 panels.js
--- js/panels.js	8 Jan 2008 19:58:36 -0000	1.1.2.4
+++ js/panels.js	10 Jan 2008 17:02:33 -0000
@@ -6,12 +6,12 @@
   // 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-hide', this).addClass("panel-hide-hover"); return true;
     }
    );
   $("div.panel-pane").mouseout(
    function(){
-      $('div.panel-hide', this).removeClass("hover"); return true;
+      $('div.panel-hide', this).removeClass("panel-hide-hover"); return true;
     }
   );
 }

