$(document).ready(function() {

  $('.moreStuff').click(function() {
    $(this).next('.submenu').slideToggle('fast');
  });

});