Index: admin.toolbar.js
===================================================================
RCS file: /cvs/drupal/contributions/modules/admin/includes/Attic/admin.toolbar.js,v
retrieving revision 1.1.2.9
diff -u -r1.1.2.9 admin.toolbar.js
--- admin.toolbar.js	31 Jul 2010 21:22:44 -0000	1.1.2.9
+++ admin.toolbar.js	11 Sep 2010 05:24:10 -0000
@@ -107,7 +107,7 @@
   if ($(document.body).is('.admin-expanded')) {
     if ($(toolbar).is('.vertical')) {
       $('div.admin-blocks', toolbar).animate({width:'0px'}, 'fast', function() { $(this).css('display', 'none'); });
-      if ($(toolbar).is('.nw') || $(toolbar).is('sw')) {
+      if ($(toolbar).is('.nw') || $(toolbar).is('.sw')) {
         $(document.body).animate({marginLeft:'0px'}, 'fast', function() { $(this).toggleClass('admin-expanded'); });
       }
       else {
@@ -116,7 +116,7 @@
     }
     else {
       $('div.admin-blocks', toolbar).animate({height:'0px'}, 'fast');
-      if ($(toolbar).is('.nw') || $(toolbar).is('ne')) {
+      if ($(toolbar).is('.nw') || $(toolbar).is('.ne')) {
         $(document.body).animate({marginTop:'0px'}, 'fast', function() { $(this).toggleClass('admin-expanded'); });
       }
       else {
@@ -128,7 +128,7 @@
   else {
     if ($(toolbar).is('.vertical')) {
       $('div.admin-blocks', toolbar).animate({width:'260px'}, 'fast');
-      if ($(toolbar).is('.nw') || $(toolbar).is('sw')) {
+      if ($(toolbar).is('.nw') || $(toolbar).is('.sw')) {
         $(document.body).animate({marginLeft:'260px'}, 'fast', function() { $(this).toggleClass('admin-expanded'); });
       }
       else {
@@ -137,7 +137,7 @@
     }
     else {
       $('div.admin-blocks', toolbar).animate({height:'260px'}, 'fast');
-      if ($(toolbar).is('.nw') || $(toolbar).is('ne')) {
+      if ($(toolbar).is('.nw') || $(toolbar).is('.ne')) {
         $(document.body).animate({marginTop:'260px'}, 'fast', function() { $(this).toggleClass('admin-expanded'); });
       }
       else {

