/**
* @depend shiny-scroll.js
*/
(function($){
  $.fn.shiny_scroll= function(options) {
    return this.each(function(){
        var defaults= {
          first_slice: this,
          margin_between_slices: 0,
          total_slices: 4,
          track_width: 600,
          footer_nav: false,
          ajax: true,
          posts_per_page: 12,
          blog: false
        }
        options= $.extend({}, defaults, options)
        new ShinyScroll(options)
    })
  }
})(jQuery);
