/* ================================================================ *
	jquery fadeエフェクト
 * ================================================================ */

$(document).ready(function(){
$("img.fade-btn").fadeTo(0,1);
$("img.fade-btn").hover(function(){
        $(this).fadeTo(300,0);
    },
    function(){
        $(this).fadeTo(300,1);
    });
});

$(document).ready(function(){
	$("div#fade").hover(
	function() { $(this).animate({ backgroundColor: "#fcf6c8" },400 );},
	function() { $(this).animate({ backgroundColor: "#ffffff" },400 );}
	);
});


$(document).ready(function(){
	$("div.table-fade h3").hover(
	function() { $(this).animate({ color: "#ff3300" },400 );},
	function() { $(this).animate({ color: "#410d01" },400 );}
	);
});



/* ================================================================ *
	LightBox
 * ================================================================ */
/*
$(function() {
	$('.works-photo a').lightBox();
	$('.img-right a').lightBox();
	$('.photo-area a').lightBox();
});
*/

/* ================================================================ *
	スムーズスクロール
 * ================================================================ */

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;
		}
	}
});


