﻿//ロールオーバー
$(document).ready(function(){
	var postfix = '_on';
	$('[class=rollImg]').not('[src*="'+ postfix +'."]').each(function() {
		var img = $(this);
		var src = img.attr('src');
		var src_on = src.substr(0, src.lastIndexOf('.'))
		           + postfix
		           + src.substring(src.lastIndexOf('.'));
		$('<img>').attr('src', src_on);
		img.hover(
			function() {
				img.attr('src', src_on);
			},
			function() {
				img.attr('src', src);
			}
		);
	});
});


//スクロール
$(document).ready(function(){
	jQuery.easing.quart = function (x, t, b, c, d) {
    	return -c * ((t=t/d-1)*t*t*t - 1) + b;
	};
	$('a[href^=#]').click(function(){
		var targetOffset = $($(this).attr("href")).offset().top - 30;
		$('html,body').animate({scrollTop:targetOffset}, 1000, 'quart');
		return false;
	});
});

