$(function(){
	$("body").css("font-size",$.cookie('fsize'));
	if ($.cookie('fsize') === null || $.cookie('fsize') == '100%') {
		$('#fontChanger-small a').addClass('current');
	}
	if ($.cookie('fsize') == '113%') {
		$('#fontChanger-medium a').addClass('current');
	}
	if ($.cookie('fsize') == '150%') {
		$('#fontChanger-large a').addClass('current');
	}
	$('#fontChanger a').bind('click', function() {
		$('#fontChanger a').removeClass('current');
		$(this).addClass('current');
	});
});
function font(size){
	$("body").css("font-size",size);
	$.cookie("fsize",size,{expires:1,path:'/'});//※1
}

