﻿/* ================================================================ *
	スムーズスクロール
 * ================================================================ */

var url = "http://" + location.hostname + location.pathname;
$('a[@href*="#"]').click(function() {
	var id = this.href.substring(this.href.indexOf('#'),this.href.length);
	var hrefUrl = this.href.split(id);
	if(hrefUrl[0] == url) {
		if(id == '#header') {
			$('body').addClass('body');
			$('.body').ScrollTo('slow');
			$('body').removeClass();
			return false;
			}else{
			$(id).ScrollTo('slow');
			return false;
		}
	}
});

/*====================================================
画像フェード
====================================================*/

$(document).ready(function() {
	$('.gallery ul').add(".gallery ul li").hover(function() {
		$(this).siblings().stop().fadeTo(500,0.5);
	}, function() {
		$(this).siblings().stop().fadeTo(500,1);
	});
});

