// Funtionen steuert Menü
function showMenu(id){
  if(document.getElementById('out_'+id)){
    document.getElementById('out_'+id).style.display = '';
  }
}

function hideMenu(id){
  if(document.getElementById('out_'+id)){
    document.getElementById('out_'+id).style.display = 'none';
  }
}

// Steuer Archivfunktion
var i=0;
function showArchiv(){
  if(i==1){
    document.getElementById('newsArchiv').style.display = 'none';
    i=0;
  }
  else{
    document.getElementById('newsArchiv').style.display = '';
    i=1;
  }
}
