// JavaScript Document

$(document).ready(function() {
	 //まずトップに戻るを消しておきます。
	$("#back-top").hide();

	 //スクロールされたら
	$(window).scroll(function () {
		//100pxいったら
		if ($(this).scrollTop() > 100) {
			//トップに戻るをフェードイン
			$('#back-top').fadeIn();
		//100pxいかなかったら
		} else {
			//隠す
			$('#back-top').fadeOut();
		}
	});

	 //トップに戻るをクリックしたら
	$('#back-top a').click(function () {
		//スムーズに上に戻る
		$('body,html').animate({
			scrollTop: 0
		}, 800);
		return false;
	});

	$("#gNav03 > a, #gNav04 > a").click(function(){
		return(false);
	});

	$("input[id='send_applicant']").each(function(){
		var chk = $(this).attr('checked');

		if(chk == 'checked'){
			$("input[name='send_to']").attr("disabled","disabled");
			$("input[name='send_company']").attr("disabled","disabled");
			$("input[name^='relation']").attr("disabled","disabled");
			$("input[name='send_address']").attr("disabled","disabled");
			$("input[name='send_tel']").attr("disabled","disabled");
		}else{
			$("input[name='send_to']").removeAttr("disabled");
			$("input[name='send_company']").removeAttr("disabled");
			$("input[name^='relation']").removeAttr("disabled");
			$("input[name='send_address']").removeAttr("disabled");
			$("input[name='send_tel']").removeAttr("disabled");
		}
		return true;
	});

	$("input[id='send_applicant']").click(function(){
		var chk = $(this).attr('checked');

		if(chk == 'checked'){
			$("input[name='send_to']").attr("disabled","disabled");
			$("input[name='send_company']").attr("disabled","disabled");
			$("input[name^='relation']").attr("disabled","disabled");
			$("input[name='send_address']").attr("disabled","disabled");
			$("input[name='send_tel']").attr("disabled","disabled");
		}else{
			$("input[name='send_to']").removeAttr("disabled");
			$("input[name='send_company']").removeAttr("disabled");
			$("input[name^='relation']").removeAttr("disabled");
			$("input[name='send_address']").removeAttr("disabled");
			$("input[name='send_tel']").removeAttr("disabled");
		}
		return true;
	});
});// JavaScript Document
