$(function() {	
	//$("div#slides").smoothDivScroll({autoScroll: "onstart",
//		autoScrollDirection: "backandforth",
//		autoScrollStep: 1,
//		autoScrollInterval: 15,
//		startAtElementId: "startAtMe",
//		visibleHotSpots: "always"
//	});
	
	$("ul#scrollableArea").simplyScroll({
		autoMode: 'loop',
		speed: 1,
		frameRate: 20,
		horizontal: true,
		pauseOnHover:false
	});

	
	//ライトボックス
	$('div#signboard a').lightBox();
	$('div#renewal a').lightBox();
	$('div#display a').lightBox();
	$('div#illumination a').lightBox();
	$('div#others a').lightBox();
	
	$('a[href*=#]').click(function() {
      // スクロールの速度
      var speed = 400;// ミリ秒
      // アンカーの値取得
      var href= $(this).attr("href");
      // 移動先を取得
      var target = $(href == "#" || href == "" ? 'html' : href);
      // 移動先を数値で取得
      var position = target.offset().top;
      // スムーススクロール
      $($.browser.safari ? 'body' : 'html').animate({scrollTop:position}, speed, 'swing');
      return false;
   });
   

});

