diff --git a/shrinkwrap_images.js b/shrinkwrap_images.js
index 2da5b0b..db3ac70 100644
--- a/shrinkwrap_images.js
+++ b/shrinkwrap_images.js
@@ -8,9 +8,27 @@ var gifpath = '
';
var eol_si_img = function() {
jQuery("img").wrap('
');
jQuery("img").after(gifpath);
+
+};
+
+var eol_si_test = function() {
+ alert("yes");
};
+
+
+
// Run shrinkwrap on doc load
-jQuery(document).ready(function() {
+jQuery(document).on('load', function() {
eol_si_img();
-});
\ No newline at end of file
+
+ jQuery(document).on('ready', '#swipebox-slider', function(){
+ alert("yes");
+});
+
+});
+
+
+
+
+