$(document).ready(function () {
	
	totalHeight = $("#screenshot_image").attr("class");
	newHeight = parseInt(totalHeight)+48+58;
	$("#screenshot_image").click(function () {
		currentHeight = $("#screenshot_container").css("height");
		if(currentHeight == "201px")
		{
			$("#screenshot_container").animate({
			"height":txtC(newHeight)
			},500);
		}
		else
		{
			$("#screenshot_container").animate({
			"height":"201px"
			},500);
		}
	});
});
