=== modified file 'app/webroot/js/jquery.galleriffic.js'
--- app/webroot/js/jquery.galleriffic.js	2009-08-13 13:08:44 +0000
+++ app/webroot/js/jquery.galleriffic.js	2009-08-14 14:00:10 +0000
@@ -59,6 +59,7 @@
 	var defaults = {
 		delay:                  3000,
 		numThumbs:              20,
+       removeThumbCaptions:    true,
 		preloadAhead:           40, // Set to -1 to preload all images
 		enableTopPager:         false,
 		enableBottomPager:      true,
@@ -111,6 +112,7 @@
 			initializeThumbs: function() {
 				this.data = [];
 				var gallery = this;
+               var removeThumbCaptions = this.removeThumbCaptions;
 				
 				this.$thumbsContainer.find('ul.thumbs > li').each(function(i) {
 					var $li = $(this);
@@ -120,11 +122,16 @@
 					gallery.data.push({
 						title:$aThumb.attr('title'),
 						slideUrl:$aThumb.attr('href'),
-						caption:$li.find('.caption').remove(),
+                       caption:$li.find('.caption').clone(), 
 						hash:hash
 					});
 
+                    // remove thumb captions
+                    if (removeThumbCaptions) {
+                        var $caption = $li.find('.caption').remove();
+                    }
+

