function unsereLeistungen() {
  var bottomnavi = document.getElementById("topnavi_bottom");
  bottomnavi.style.display = "block";
  document.getElementById("topnavi_top_leistungen_a").style.color = "#047fd3";
}

function ausklappen() {
  var bottomnavi = document.getElementById("topnavi_bottom");
  bottomnavi.style.display = "block";
  document.getElementById("topnavi_top_leistungen_a").style.color = "#047fd3";
}

function einklappen( seite ) {
  if( seite != "unsere_leistungen") {
    var bottomnavi = document.getElementById("topnavi_bottom");
    bottomnavi.style.display = "none";
    document.getElementById("topnavi_top_leistungen_a").style.color = "#00538b";
  }
}

