/* ********************************************************
フォントサイズの切り替え用
********************************************************** */

function changeSize(target){
	
	if(target.id == "fmid"){
		//fsc('default');
		var size = "14px";
	}else{
		//fsc('larger');
		var size = "16px";
	}
	
	document.body.style.fontSize = size;
	
	//スタイルの初期化
	document.getElementById("fmid").style.fontWeight = "normal";
	document.getElementById("fmid").style.backgroundColor = "#ffffff";
	document.getElementById("fbig").style.fontWeight = "normal";
	document.getElementById("fbig").style.backgroundColor = "#ffffff";
	
	//選択した方のスタイルを変更
	target.style.fontWeight = "bold";
	target.style.backgroundColor = "#e5e5e5";
	
}
