$(document).ready(function() {
    $("img.subnavi-on").fadeTo(1,0.5)
    .hover( 
        function(){// マウスオーバー時
            $(this).fadeTo(400, 1.0);
        },
        function(){// マウスアウト時
            $(this).fadeTo(500, 0.5);
        }
    );
});

$(document).ready(function() {
    $("img.subnavi-off").fadeTo(1,0.5)
});

$(document).ready(function() {
    $("img.hover-on").fadeTo(1,1)
    .hover( 
        function(){// マウスオーバー時
            $(this).fadeTo(200, 0.5);
        },
        function(){// マウスアウト時
            $(this).fadeTo(500, 1);
        }
    );
});

$(document).ready(function() {
    $("img.hover-off").fadeTo(1,0.5)
});

$(document).ready(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;
			}
		}
	});
});
