/***** verhindert das lästige Popup des Alt-Textes im IE bei Startseiten :hover *****/

 function inittitle()
 {
    if(!document.getElementById || !document.body.nodeName)
       return;

    if(!window.Event)
    {
       document.getElementById("collage1").setAttribute("title", "", true);
       document.getElementById("collage2").setAttribute("title", "", true);
    }
 }

 var counter = 0;
 tmptitle = window.onload;
 window.onload = function()
 {
   if(counter == 0)
   {
     if(typeof tmptitle == "function")
        tmptitle();

     inittitle();
     counter++;
   }
 }