1. $(document).on({
  2. mouseenter: function(e) {
  3. $(this).css('background-position','0px top');
  4. },
  5. mouseleave: function(e) {
  6. $(this).css('background-position','-41px top');
  7. }
  8. }, '.panel:not(.active)');