diff --git a/theme/galleryformatter.js b/theme/galleryformatter.js
index 3019d75..7651deb 100644
--- a/theme/galleryformatter.js
+++ b/theme/galleryformatter.js
@@ -35,6 +35,15 @@ Drupal.galleryformatter.prepare = function(el) {
   });
   var $thumbslinks = $('a', $thumbsLi);
 
+  // Center Aligns the Gallery Slides 
+  var mainContainerWidth = $(".gallery-slides").width();
+  var unitSlideWidth;
+  $slides.each(function(){
+      unitSlideWidth = $(this).width(); 
+      $(this).css("margin-left",((mainContainerWidth-unitSlideWidth)/2)+"px");
+      });
+
+
   /*
    * @TODO:
    * figure out how to get this into proper functions reusing selections
