diff --git js/jquery.galleriffic.js js/jquery.galleriffic.js
index add2376..98ed9d3 100644
--- js/jquery.galleriffic.js
+++ js/jquery.galleriffic.js
@@ -280,7 +280,8 @@
 			isPreloadComplete: false,
 
 			// Initalizes the image preloader
-			preloadInit: function() {
+			preloadInit: function() {
+        if (!this.currentImage) return false;
 				if (this.preloadAhead == 0) return this;
 				
 				this.preloadStartIndex = this.currentImage.index;
@@ -437,6 +438,7 @@
 			// @param {Boolean} dontPause Specifies whether to pause the slideshow.
 			// @param {Boolean} bypassHistory Specifies whether to delegate navigation to the history plugin when history is enabled.  
 			next: function(dontPause, bypassHistory) {
+        if (!this.currentImage) return false;
 				this.gotoIndex(this.getNextIndex(this.currentImage.index), dontPause, bypassHistory);
 				return this;
 			},
@@ -502,6 +504,7 @@
 			// This function is garaunteed to be called anytime a gallery slide changes.
 			// @param {Object} imageData An object holding the image metadata of the image to navigate to.
 			gotoImage: function(imageData) {
+        if (!imageData) return false;
 				var index = imageData.index;
 
 				if (this.onSlideChange)
diff --git js/views_galleriffic.js js/views_galleriffic.js
index 670eff0..87d376f 100644
--- js/views_galleriffic.js
+++ js/views_galleriffic.js
@@ -1,4 +1,4 @@
-Drupal.behaviors.ViewsGalleriffic = function () { 
+Drupal.behaviors.ViewsGalleriffic = function (context) { 
   var settings = Drupal.settings.views_galleriffic;
 
     // Initially set opacity on thumbs and add
@@ -15,7 +15,7 @@ Drupal.behaviors.ViewsGalleriffic = function () {
      );
 
     // Initialize Advanced Galleriffic Gallery
-    var gallery = $('#thumbs').galleriffic({ 
+    var gallery = $('#thumbs:not(.galleriffic-processed)', context).addClass('galleriffic-processed').galleriffic({ 
       delay:                  settings.delay,
       numThumbs:              settings.numbthumbs,
       preloadAhead:           settings.numbthumbs,
