$(function() {
	if($.cookie('IBD_FontSize')) {
		changeFontSize($.cookie('IBD_FontSize'));
	}
	
	$('#fontLarge a').click(function() {
		changeFontSize('88%');
	});
	$('#fontMiddle a').click(function() {
		changeFontSize('75%');
	});
	$('#fontSmall a').click(function() {
		changeFontSize('65%');
	});
});

function changeFontSize(size) {
	$('#fontSize li').removeClass('current');
	
	if(size == '88%') {
		$('#fontLarge').addClass('current');
	} else if(size == '75%') {
		$('#fontMiddle').addClass('current');
	} else if(size == '65%') {
		$('#fontSmall').addClass('current');
	}
	
	$('body').css('font-size', size);
	$.cookie('IBD_FontSize', size, {expires:365, path:'/'});
}
