$(document).ready(function(){	

	//= スライドショー;
	$("#slider").easySlider({
		auto: true, 
		continuous: true,
		speed: 800,
		pause: 4000,
		controlsShow: false
	});

	//= スライドショー;
	$("#feature-slider").easySlider({
		auto: true, 
		continuous: true,
		speed: 2000,
		pause: 2000,
		controlsShow: false,
		controlsFade:		true
	});

	//$('#gallery a').lightBox();
	$('#gallery a:not(.social-link a,.style a,[rel=external])').lightBox();
	$('.staff #gallery .style 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;
	});

	$("#grid").vgrid();

});


