function initMenu() {
  $('#contactsection dl').hide();

  $('#contactsection dd a').click(
    function() {
      var checkElement = $(this).next();
      if((checkElement.is('dl')) && (checkElement.is(':visible'))) {
        return false;
        }
      if((checkElement.is('dl')) && (!checkElement.is(':visible'))) {
        $('#contactsection dl:visible').slideUp('normal');
        checkElement.slideDown('normal');
        return false;
        }
      }
    );
  }
$(document).ready(function() {initMenu();});
