Index: modules/toolbar/toolbar.js
===================================================================
RCS file: /cvs/drupal/drupal/modules/toolbar/toolbar.js,v
retrieving revision 1.8
diff -u -p -r1.8 toolbar.js
--- modules/toolbar/toolbar.js	15 Nov 2009 21:13:26 -0000	1.8
+++ modules/toolbar/toolbar.js	16 Nov 2009 23:02:50 -0000
@@ -54,7 +54,11 @@ Drupal.admin.toolbar.collapse = function
   $.cookie(
     'Drupal.admin.toolbar.collapsed', 
     1, 
-    {path: Drupal.settings.basePath}
+    {
+      path: Drupal.settings.basePath,
+      // The cookie should "never" expire.
+      expires: 36500
+    }
   );
 }
 
@@ -72,7 +76,11 @@ Drupal.admin.toolbar.expand = function()
   $.cookie(
     'Drupal.admin.toolbar.collapsed', 
     0, 
-    {path: Drupal.settings.basePath}
+    {
+      path: Drupal.settings.basePath,
+      // The cookie should "never" expire.
+      expires: 36500
+    }
   );
 }
 
