$(document).ready(function(){

	//Prepare
	$(".toggle-content").hide();

	//Switch the "Open" and "Close" state per click then slide up/down (depending on open/close state)
	$(".expand").click(function(){
		$(this).toggleClass("active").next(".toggle-content").slideToggle("slow");
		return false; //Prevent the browser jump to the link anchor
	});
	
	//Switch the "Open" and "Close" state per click then slide up/down (depending on open/close state)
	$(".expand-lawyer").click(function(){
		$(this).next(".toggle-excerpt").addClass("done");
		$(this).toggleClass("active").prev(".toggle-content").slideToggle("slow");
		return false; //Prevent the browser jump to the link anchor
	});
	
});
