// JavaScript Document

            $(function() {
                /* スクロールパネル初期化 */
                $('#pane1').jScrollPane({showArrows:true});
                /* スクロールパネル初期化（アニメーション効果あり） */
                $('#pane2').jScrollPane({animateTo:true, animateInterval:50, animateStep:3});
                /* リンク設定 */
                $('a.scroll-to-element-demo').bind(
                    'click',
                    function(){
                        $this = $(this);
                        var destinationSelector = $(this).attr('rel');
                        $('.scroll-pane', $this.parent().parent().parent()).each(
                            function() {
                                this.scrollTo(destinationSelector);
                            }
                        );
                        return false;
                    }
                );
            });
