jQuery(function($){
    // ページのTOPにスクロール
    $('a[href*=#]').click(function(){
        if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname == this.hostname) {
            var $target = $(this.hash);
            $target = $target.length && $target || $('[name=' + this.hash.slice(1) +']');
            
            if ($target.length) {
                var targetOffset = $target.offset().top;
                $('html,body').animate({scrollTop: targetOffset}, 300, 'easeOutSine');
                return false;
            }
        }
    });
    
    // バナーのフェード
    $('#connection li a,#section li a,#banner li a img').hover(function(){
        $(this).fadeTo(200,0.6);
    }, function(){
        $(this).fadeTo(300,1.0);
    });
    
    // 
    $('#inquiry .article p.btn input').hover(function(){
        $(this).fadeTo(200,0.6);
    }, function(){
        $(this).fadeTo(300,1.0);
    });
    
    // home のスライド
    if ($('body').attr('id') == 'home') {
        $('#visual').cycle({
            'fx'      : 'fade',
            'easing'  : 'easeInQuad',
            'delay'   : -2000,
            'timeout' : 6000
        });
    }
});
