$(

	function()
	{

		$(".article-section:gt(2)").hide();

		$(".show-old").click
		(
			function(e)
			{
				e.preventDefault();

				$(this).parent().hide();

				$(".article-section:hidden").fadeIn();
			}
		);

	}

);
