// $Id: panels.js,v 1.1 2008-12-30 19:44:09 edesantis Exp $

Drupal.Panels = {};

Drupal.Panels.autoAttach = function() {
  if ($.browser.msie) {
    // If IE, attach a hover event so we can see our admin links.
    $("div.panel-pane").hover(
      function() {
        $('div.panel-hide', this).addClass("panel-hide-hover"); return true;
      },
      function(){
        $('div.panel-hide', this).removeClass("panel-hide-hover"); return true;
      }
    );
  }
}

$(Drupal.Panels.autoAttach);

