
//フォントサイズ変更の関数定義
var font = 80;
window.onload = function (){
	document.getElementById('fontM').onclick = function(){
		fontChg("");
	};
	document.getElementById('fontL').onclick = function(){
		fontChg("up");
	};
}
function fontChg(mode) {

	if(mode == "up") {
		font += 10;
	} else {
		font = 80;
	}

	document.getElementById("indexBody").style.fontSize = font + "%";
}


