$(document).ready(function()
	{
		$("div#hiddentext").hide();
		$("a#readmore").show();
		$("a#readmore").click(function()
			{
				$("div#hiddentext").show();
				$("a#readmore").hide();
			})
	}
);