function initMenu() {
  $('.accordion .entry').hide();
  $('.accordion .entry:first').show();
  $('.accordion .post h2 a').click(
    function() {
      var checkElement = $(this).parent().parent().find('.entry');
      if((checkElement.is('.entry')) && (checkElement.is(':visible'))) {
        return false;
        }
      if((checkElement.is('.entry')) && (!checkElement.is(':visible'))) {
        $('.accordion .entry:visible').slideUp('normal');
        checkElement.slideDown('normal');
        return false;
        }
      }
    );
  }
$(document).ready(function() {initMenu();});