 $(function() {
            $('#pane1').jScrollPane({showArrows:true});
            $('#pane2').jScrollPane({showArrows:true});
            $('#pane3').jScrollPane({showArrows:true});

/* リンク設定 */
            $('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;
               }
            );
         });
