$(document).ready(function() {

	$("a.question").click(function() {
		$(this).parent().next("div.answer").slideToggle("slow");
		return false;
	});

	$("a.case-study-expand").click(function() {
		$(this).parent().next("p.case-study-fulltext").slideToggle("slow");
		$(this).slideToggle();
		return false;
	});

});
