$(document).ready(function()
	{
		$minHeight = 405;
		$maxHeight = 1010;
		if(jQuery.browser.msie)
			{
				$minHeight = 410;
				$maxHeight = 1035;
			}
		$("#shortText").css("height", $minHeight+"px");
		$("#clickForMore").click(function()
			{
				if($(this).attr("title")=="more")
					{
						$("#shortText").animate({"height": $maxHeight+"px"},400);
						$(this).text("click for less");
						$(this).attr("title", "less");
					}
				else
					{
						$("#shortText").animate({"height": $minHeight+"px"},400);
						$(this).text("click for more");
						$(this).attr("title", "more");
					}
			})
	});
