$(document).ready( function () {
  $("#showslist").toggle(
    function () {
      $('.lastrow').show('slow');
      $(this).html('CLOSE');
    },
    function () {
      $('.lastrow').hide('slow');
      $(this).html('ALL<span>&nbsp;</span>');
    }
  );
}); 