$(document).ready(function(){

  $(".expand-link").click(function(){
   	$(this).parent().addClass("expander-large");
		$(this).parent().find("textarea").attr("rows", 20);
		$(this).parent().find(".expand-link").hide();
		$(this).parent().find(".contract-link").show();
		$(this).parent().find("label").hide();
    return false;
  });

  $(".contract-link").click(function(){
    $(this).parent().removeClass("expander-large");
		$(this).parent().find("textarea").attr("rows", 3);
		$(this).parent().find(".contract-link").hide();
		$(this).parent().find(".expand-link").show();
		$(this).parent().find("label").show();
    return false;
  });

});
