$(document).ready(function(){
	if($.cookie('tabiulala_FontSize')) {
		changeFontSize($.cookie('tabiulala_FontSize'));
	}
	
	$('#large a').click(function() {
		changeFontSize('100%');
	});
	$('#medium a').click(function() {
		changeFontSize('88%');
	});
	$('#small a').click(function() {
		changeFontSize('75%');
	});
	
	
	$('#gnavi .giving ul', this).css('opacity', '0.8');
	$('#gnavi .giving').mouseover(function() {
		$('ul', this).show();
	});
	$('#gnavi .giving').mouseout(function() {
		$('ul', this).hide();
	});


	$("#purposeForEating .title input").live("change",function(){
		if($(this).attr("checked")==true){
			$("#purposeForEating input[type=checkbox]").each(function(){
				$(this).attr("checked",true);
			});
		}
	});
});

function changeFontSize(size) {
	$('.fontSize li').removeClass('current');
	
	if(size == '100%') {
		$('#large').addClass('current');
	} else if(size == '88%') {
		$('#medium').addClass('current');
	} else if(size == '75%') {
		$('#small').addClass('current');
	}
	
	$('body').css('font-size', size);
	$.cookie('tabiulala_FontSize', size, {expires:365, path:'/'});
}

