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

