$(document).ready(function() {
  var location = document.location.toString();
  var base = document.getElementsByTagName('base')[0].href;
  if (location != base + 'kogti'
   && location != base + 'midi-kogti'
   && location != base + 'kinderkogti'
   && location != base + 'mini-kogti') {
    $('#submenu-therapietische').css("display", "none");
  }
  if (location.indexOf(base + 'zubehoer/') < 0) {
    $('#submenu-therapiezubehoer').css("display", "none");
  }
  $('#menu-therapietische').attr('class', 'link-like');
  $('#menu-therapietische').click(function() {
    $('#submenu-therapietische').slideToggle('slow');
  });
  $('#menu-therapiezubehoer').attr('class', 'link-like');
  $('#menu-therapiezubehoer').click(function() {
    $('#submenu-therapiezubehoer').slideToggle('slow');
  });
});
