jQuery(function($){ 'use strict'; // ------------------------------------------------------------- // Cycle By Items // ------------------------------------------------------------- (function () { var $frame = $('#cycleitems'); var $slidee = $frame.children('.slidee'); var $wrap = $('.insidethisbox'); $(window).resize(function(e) { $frame.sly('reload'); }); // Call Sly on frame $frame.sly({ horizontal: 1, itemNav: 'basic', smart: 1, activateOn: 'click', mouseDragging: 1, touchDragging: 1, releaseSwing: 1, startAt: 0, scrollBar: $wrap.find('.scrollbar'), scrollBy: 1, speed: 1000, elasticBounds: 1, easing: 'easeOutExpo', dragHandle: 1, dynamicHandle: 1, clickBar: 1, // Buttons nextPage: $wrap.find('.next') }); }()); });