$(window).load(function() {
           
            new BlocksScroller({
                container: $("#preview .panel-content:first"),
                scrolledObj: $("#preview .panel-content:first"),
                blocksCount: 6,
                blockWidth: 75,
                visibleBlocks: 4,
                prevButton: $("#preview .prev:first"),
                nextButton: $("#preview .next:first")
            });
           
            new BlocksScroller({
                container: $("#preview2 tr:first"),
                scrolledObj: $("#preview2 table:first"),
                blocksCount: 6,
                blockWidth: 76,
                visibleBlocks: 5,
                prevButton: $("#preview2 .prev:first"),
                nextButton: $("#preview2 .next:first")
            });
        });
        
        function runScroll()
        {
            new BlocksScroller({
                container: $("#preview3 .panel-content:first"),
                scrolledObj: $("#preview3 .panel-content:first"),
                blocksCount: 6,
                blockWidth: 75,
                visibleBlocks: 4,
                scrollType: BS_BY_TIMER,
                timerSpeed: 1000
            });
        }
