$(function() {
  $('._as_description').css({minWidth: '400px'}).hide();
  $('._as_title').css({borderBottom: '1px dotted black', cursor: 'pointer'}).click(function() {
    $('._as_description', $(this).parent()).slideToggle(300);
  });
});
