//フォントサイズスイッチャ
var fontSizeSwitch = 
{
	body	: "",
	value	: "",
	//初期化
	init : function()
	{
		this.body = document.body;
	
		//クッキーから初期サイズの設定
		
		this.value = getCookie('rtc_fontSize')-0;
		if(this.value)
		{
			this.body.style.fontSize = this.value+"%";
		}
		else
		{
			this.value = (this.body.style.fontSize)? parseInt(this.body.style.fontSize) : 100 ;
		}
	},
	
	//メイン
	change : function()
	{
		if(arguments[0] != null )
		{
			this.value += arguments[0];
			this.body.style.fontSize = this.value+"%";
			setCookie('rtc_fontSize',this.value,30); //クッキーを食わせる
		}
		else
		{
			this.value = 100;
			this.body.style.fontSize = "100%";
			setCookie('rtc_fontSize',100,30); //クッキーを食わせる
		}
	}
};

addEvent(window , "load" , function(){fontSizeSwitch.init();});