(function ($){
  $(document).ready(function() {
    $('.slideShow').slideShow({
    interval: 3,
    slideClick: function(slideShow) {
      if (slideShow.mouse.x > slideShow.options.slideSize.width / 2) {
        slideShow.next();
      } else {
        slideShow.previous();
      }
    }
    });
  });
})(jQuery);

