<!--

// GENERAL SETTINGS

if (document.all) type="IE"; 
if (document.layers) type="NN";
if (!document.all && document.getElementById) type="MO";

theLoc = this.location.href;


// INITALISIERE HAUPTNAVIGATION

function inithauptnav()
 {
  if (theLoc.indexOf('idee') > 0)
 { ChangeObjBgImg('idee', true);
}
 if (theLoc.indexOf('news') > 0)
 { ChangeObjBgImg('news', true);
}
 if (theLoc.indexOf('bilder') > 0)
 { ChangeObjBgImg('bilder', true);  
}
 if (theLoc.indexOf('barbara') > 0)
 { ChangeObjBgImg('barbara', true);  
}
  if (theLoc.indexOf('andreas') > 0)
 { ChangeObjBgImg('andreas', true);  
}
 if (theLoc.indexOf('weg') > 0)
 { ChangeObjBgImg('weg', true);  
}
  if (theLoc.indexOf('kontakt') > 0)
 { ChangeObjBgImg('kontakt', true);  
}
 if (theLoc.indexOf('presse') > 0)
 { ChangeObjBgImg('presse', true); 
   }
 if (theLoc.indexOf('links') > 0)
 { ChangeObjBgImg('links', true);  
}
if (theLoc.indexOf('archiv') > 0)
 { ChangeObjBgImg('pressearchiv', true);  
}
if (theLoc.indexOf('spiegel') > 0)
 { ChangeObjBgImg('pressespiegel', true);  
}
if (theLoc.indexOf('text') > 0)
 { ChangeObjBgImg('pressetext', true);  
}
}

function ChangeObjBgImg(id, state){
	
   if (state) {
    //if (type=="IE") document.all[id].color="#636563";
	if (type=="IE") document.getElementById(id).style.color="#636563";
    if (type=="NN") document.layer['id'].color="#636563";
    if (type=="MO") document.getElementById(id).style.color="#636563";
  } 
   
 	
} 


//-->