// Navi-Hover-Skript fuer IE6
if ( document.all && document.getElementById )
{
   // Navi-Div rauspicken
   objNaviDiv = document.getElementById("senior");
   if ( "senior" == objNaviDiv.id )
   {
      // Alle Listenpunkte durchgehen...
      allListPoints = document.getElementsByTagName("li");
      for ( i = 0; i < allListPoints.length; i++ )
      {
         // ...und beim Mouseover zusaetzl. Klasse fuer Hovereffekt vergeben
         allListPoints[i].onmouseover = function()
         {
            this.className += "IE6";
            //alert(this.className);
         }
         // Und wieder retour!
         allListPoints[i].onmouseout = function()
         {
            this.className = this.className.replace("IE6", "");
         }
      }
   }
}
// IE-Button-Hover (Ende)