Index: lightbox.js
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/lightbox2/js/lightbox.js,v
retrieving revision 1.5.2.6.4.12
retrieving revision 1.5.2.6.4.13
diff -u -r1.5.2.6.4.12 -r1.5.2.6.4.13
--- lightbox.js 10 Dec 2007 11:52:39 -0000 1.5.2.6.4.12
+++ lightbox.js 19 Dec 2007 15:26:02 -0000 1.5.2.6.4.13
@@ -544,6 +544,10 @@
         Lightbox.changeImage(Lightbox.activeImage - 1); return false;
       });
     }
+    // safari browsers need to have hide() called again
+    else {
+      $('#prevLink').hide();
+    }

     // if not last image in set, display next image button
     if (Lightbox.activeImage != (Lightbox.imageArray.length - 1)) {
@@ -551,6 +555,10 @@
         Lightbox.changeImage(Lightbox.activeImage + 1); return false;
       });
     }
+    // safari browsers need to have hide() called again
+    else {
+      $('#nextLink').hide();
+    }

     this.enableKeyboardNav();
   },