$(

	function()
	{
		$(".font-size-selector span").click
		(

			function()
			{
				var id = $(this).attr("id");

				var fontSizes = new Array(16, 20, 24);

				var fontSizeIndex = 0;

				switch (id)
				{
					case "size-small":
						fontSizeIndex = 0;
						break;
					case "size-normal":
						fontSizeIndex = 1;
						break;
					case "size-big":
						fontSizeIndex = 2;
						break;
				}

				$(".default-stack").css("font-size", fontSizes[fontSizeIndex]+"px")
			}

		)
	}

);


