// JavaScript Document

$(function() { //shortcut for document ready
$(".normalcontent").height();
 $(".showhide a").click(function() {
	$(".showcontent").slideToggle("slow");
	//alert('Height of Normal Content: '+$(".normalcontent").height()+'\nShowhide Height: '+$(".showhide").offsetHeight);
	$(".normalcontent").height($(".normalcontent").height()+1300);
	$(this).parent().toggleClass("showless");
	return false;
});
});