// Easingの追加
jQuery.easing.quart = function (x, t, b, c, d) {
	return -c * ((t=t/d-1)*t*t*t - 1) + b;
};

/*-------------------------------------
 ページ読み込み中
-------------------------------------*/
jQuery(document).ready(function(){

	$('a:empty').css('display', 'block');
	//
	// <a href="#***">の場合、スクロール処理を追加
	//
	jQuery('a[href*=#]').click(function() {
		if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname == this.hostname) {
			var $target = jQuery(this.hash);
			$target = $target.length && $target || jQuery('[name=' + this.hash.slice(1) +']');
			if ($target.length) {
				var targetOffset = $target.offset().top;
				jQuery('html,body').animate({ scrollTop: targetOffset }, 1200, 'quart');
				return false;
			}
		}
	});


	$('#pattern').change(function(){
		chkPattern();
	}).change();


});


function chkPattern() {
	var pattern = $("#pattern").val();
	if (pattern == 2) {
		$("#p1").hide();
		$("#p2").show();
		$("#p3").hide();
		$("#p4").hide();
	}else if(pattern == 3) {
		$("#p1").hide();
		$("#p2").hide();
		$("#p3").show();
		$("#p4").hide();
	}else if(pattern == 4) {
		$("#p1").hide();
		$("#p2").hide();
		$("#p3").hide();
		$("#p4").show();
	}else {
		$("#p1").show();
		$("#p2").hide();
		$("#p3").hide();
		$("#p4").hide();

	}

}


