// JavaScript Document

/*jQueryでページ内スムーズスクロール
=======================================*/
$(function() {
	$('a[href*=#]').click(function() {
		if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') &&　location.hostname == this.hostname) {
			var target = $(this.hash);
			target = target.length && target;
			if (target.length) {
				var sclpos = 30;
				var scldurat = 1200;
				var targetOffset = target.offset().top - sclpos;
				$('html,body')
					.animate({scrollTop: targetOffset}, {duration: scldurat, easing: "easeOutExpo"});
				return false;
			}
		}
	});
});


/*jQuery lightBox plugin の設定（カスタマイズ）
=======================================*/
$(function() {
	$('a[rel^=lightbox]').lightBox();
});

/*jQuery lightBox plugin の設定（カスタマイズ2）
=======================================
$(function() {
	$('a[@rel*=lightbox]').lightBox();
});
=======================================*/


/*jQuery lightBox plugin の設定（オリジナル）
=======================================
$(function() {  
  $('.gallery1 a').lightBox();  
  $('.gallery2 a').lightBox();  
  $('.gallery3 a').lightBox();  
  $('.gallery4 a').lightBox();  
  $('.gallery5 a').lightBox();  
  $('.gallery6 a').lightBox();  
  $('.gallery7 a').lightBox();  
  $('.gallery8 a').lightBox();  
});  
=======================================*/

