$(function() 
{
	$(".accord .hidden").hide();
	$(".accord .shown").css("cursor", "pointer");
	$(".accord .shown").click(function() 
	{
		$(this).parent().find(".hidden").toggle(400);
	});
});
