function flashheader_ausblenden(){
    var childToRemove = document.getElementById('flashani').firstChild;
    var newImage = document.createElement('img');
    newImage.src= 'http://www.gagbag.com/de/img/head/head_default.jpg';
    newImage.border='0';
    newImage.alt='bentino';
    document.getElementById('flashani').appendChild(newImage);
    document.getElementById('flashani').removeChild(childToRemove);
}

function swfcontent_ausblenden(){
  austausch_bild = new Image();
  austausch_bild.src = 'http://www.gagbag.com/de/img/head/head_default.jpg';
  atags = document.getElementsByTagName('a');
  for(i=0;i<atags.length;i++){
    if(!atags[i].onclick && atags[i].target != '_blank')
      atags[i].onclick = flashheader_ausblenden;
  }
}