var TextSize = 0;

function SetFontSize()
{
	var CSSFontSize = '80%';
	if (TextSize == 1)
	{
		CSSFontSize = '90%';
	}
	else if (TextSize == -1)
	{
		CSSFontSize = '70%';
	}

	$('#EntryText').css('font-size', CSSFontSize);
}

$(function()
{
	TextSize = parseInt($.cookie('TextSize'));
	if (TextSize != -1 && TextSize != 0 && TextSize != 1)
	{
		TextSize = 0;
	}

	SetFontSize();

	$('#Increase').click(function()
	{
		if (TextSize < 1)
		{
			TextSize++;
			$.cookie('TextSize', TextSize, {path: '/'});

			SetFontSize();
		}
	});

	$('#Decrease').click(function()
	{
		if (TextSize > -1)
		{
			TextSize--;
			$.cookie('TextSize', TextSize, {path: '/'});

			SetFontSize();
		}
	});
});