function rein (aa)
 {
 var txt = aa;
   document.getElementById('mitte_info').style.backgroundColor='gray';
   document.getElementById('mitte_info').style.fontSize='10px';
   document.getElementById('mitte_info').innerHTML=txt;
 }

function raus ()
 {
   document.getElementById('mitte_info').style.backgroundColor='gray';
   document.getElementById('mitte_info').innerHTML='';
 } 
 

function beratung_rein ()
 {

document.getElementById('beratung').style.borderLeft ='3px solid black';
document.getElementById('beratung').style.borderTop ='3px solid black';
document.getElementById('beratung').style.borderBottom ='0px solid gray';
document.getElementById('beratung').style.borderRight ='0px solid gray';

 }

function beratung_raus ()
 {

document.getElementById('beratung').style.borderLeft ='0px solid gray';
document.getElementById('beratung').style.borderTop ='0px solid gray';
document.getElementById('beratung').style.borderBottom ='2px solid black';
document.getElementById('beratung').style.borderRight ='2px solid black';

 }

function akkordion(ich) {

  $('.klapp').hide(); 
  $('.klapp', ich).show('normal');

}

function auf(was) {

   $('.auswahl').hide();
   $(was).fadeIn('slow');
  
 }


