function initMenu() {
  $('.exhibition-xoxo ul').hide();
  $('.exhibition-xoxo ul:first').show();
  $('.exhibition-xoxo li h3').click(
    function() {
      var checkElement = $(this).next();
      if((checkElement.is('ul')) && (checkElement.is(':visible'))) {
        return false;
        }
      if((checkElement.is('ul')) && (!checkElement.is(':visible'))) {
        $('.exhibition-xoxo ul:visible').slideUp('normal');
        checkElement.slideDown('normal');
        return false;
        }
      }
    );
  }
jQuery(document).ready(function($) {initMenu();});
