$(".show-more a").on("click", function() {
  var $this = $(this);
  var $content = $this.parent().prev("div.content");
  var linkText = $this.text().toUpperCase();

  if (linkText === "MEHR") {
    linkText = "Weniger";
    $content.switchClass("hideContent", "showContent", 400);
  } else if(linkText === "MORE") {
      linkText = "Less";
      $content.switchClass("hideContent", "showContent", 400);
  } else if(linkText === "LESS") {
      linkText = "More";
      $content.switchClass("showContent", "hideContent", 400);
  } else {
    linkText = "Mehr";
    $content.switchClass("showContent", "hideContent", 400);
  };

  $this.text(linkText);
});