--- /Users/mjarrell/Downloads/uc_auction.js	2009-09-25 12:14:11.000000000 -0500
+++ uc_auction.js	2009-12-22 15:44:37.000000000 -0600
@@ -19,7 +19,7 @@ Drupal.behaviors.ucAuction = function(co
     // needs to be declared once.
   
     // Convert the expiry time, which is using seconds, into milliseconds.
-    Drupal.settings.ucAuction.expiry *= 1000;
+    Drupal.settings.ucAuction.expiry[0] *= 1000;
   
     if (Drupal.settings.ucAuction.doCountdown) {
       // everyTime() and stopTime() are part of jQuery Timers, declared in
@@ -39,9 +39,9 @@ Drupal.behaviors.ucAuction = function(co
         // operating systems worth counting can synchronize their time to a NTP
         // server, this will hopefully rarely be an issue.
         var that = $(this),
-          now = new Date(),
-          // Adjust for time zonage too.
-          delta = Drupal.settings.ucAuction.expiry - now.getTime() + (now.getTimezoneOffset() * 60000);
+        now = new Date(),
+        // Adjust for time zonage too.
+        delta = Drupal.settings.ucAuction.expiry[0] - now.getTime() + (now.getTimezoneOffset() * 60000);
         if (delta <= 0) {
           // The auction has expired.
           that.text(Drupal.t('expired')).stopTime('countdown');
