$(document).ready(function(){
	$("#show-testimonial-disclaimer").click(function(e){
		e.preventDefault();
		$("#testimonial-disclaimer").toggle();
	});
});