// Font-size Switcher

jQuery(function(){
	$("a.fontsize_S").click(function(){
		$("body")
			.removeAttr("class")
			.addClass("font_S");
		$.cookie('FontSizeSet','0',{expires:30,path:'/'});
		return false;
	});
	$("a.fontsize_M").click(function(){
		$("body")
			.removeAttr("class")
			.addClass("font_M");
		$.cookie('FontSizeSet','1',{expires:30,path:'/'});
		return false;
	});
	$("a.fontsize_L").click(function(){
		$("body")
			.removeAttr("class")
			.addClass("font_L");
		$.cookie('FontSizeSet','2',{expires:30,path:'/'});
		return false;
	});
});

function FontSizeGet() {
	if ($.cookie('FontSizeSet') == '0') {
		$("body")
			.removeAttr("class")
			.addClass("font_S");
	}
	if ($.cookie('FontSizeSet') == '2') {
		$("body")
			.removeAttr("class")
			.addClass("font_L");
	}
}
