// @file Custom JavaScript which applies to Gardens features

(function ($) {
  Drupal.behaviors.RotatingBannerInThemeBuilder = {
    attach: function(context) {
      if ($('body').hasClass('themebuilder')) {
        $('.rb-slides').each( function() {
          if ($(this).cycle) {
            $(this).cycle('stop');
          }
        });
      }
    }
  };
})(jQuery);

