$(function(){
  $(".expander").click(function(){
    $(this).parent().siblings("ul.anamorphic").toggle();
  });
});