$(document).ready(
  function() {
    $('li#GalleryMenu').add('li#PoemMenu').hover(
      function() {
        $(this).children('ul').removeClass('DoNotDisplay');
      },
      function() {
        $(this).children('ul').addClass('DoNotDisplay');
      }
    );
  }
);
