//run when the DOM is ready
$(document).ready(function() {
	//hide our text areas
	$(".hiddentext").hide();

	// shows the text area on clicking the link
	$("a.showhide").click(function() {
		$(this).next().slideToggle("slow");
		return false;
	}); 
});
