$(document).ready(function() {
	$(".help-link").click(function(event){
		event.preventDefault();
		$(this).parent().children('p').toggle();
	});
});

