function swap_content( foo ) {
  bild = foo+'bild';
  displayType = ( document.getElementById( foo ).style.display == 'none' ) ? 'block' : 'none';
  document.getElementById( foo ).style.display = displayType;

  displaySrc = ( document.getElementById( bild ).src == 'http://www.universitas-ev.de/Grafiken/plus.gif' ) ? 'http://www.universitas-ev.de/Grafiken/minus.gif' : 'http://www.universitas-ev.de/Grafiken/plus.gif';
  document.getElementById( bild ).src = displaySrc;
}