$(document).ready(function(){
						   
	//scroll function　スタート
	$('#sideBox').scrollFollow();
	
	//fadetitle img function　スタート
	$('#pagetitle img').fadeIn(1500);
	
	//fontsize
	$("a#large").click(function(){
								$("body").removeAttr("class");
								$("body").addClass("large");
								$.cookie("fontsize","large");
								return false;
								});
	$("a#medium").click(function(){
								 $("body").removeAttr("class");
								 $("body").addClass("medium");
								 $.cookie("fontsize","medium");
								 return false;
	});

	$("a#small").click(function(){
								$("body").removeAttr("class");
								$("body").addClass("small");
								$.cookie("fontsize","small");
								return false;
	});
	
	var cookie_value = $.cookie("fontsize");
	if(cookie_value != undefined){
		$("body").removeAttr("class");
		$("body").addClass(cookie_value);
	}
	
	
	
	//footer txtlink用
	$('#footer ul.txtnavi li:first-child').addClass('firstChild');
	 
});
