// Startnav
function HomeOn(td){
if(document.getElementById||(document.all && !(document.getElementById))){
td.style.backgroundColor="#a4bca4";
}
}

function HomeOut(td){
if(document.getElementById||(document.all && !(document.getElementById))){
td.style.backgroundColor="#80A080";
}
}
// Wir über uns
function WirOn(td){
if(document.getElementById||(document.all && !(document.getElementById))){
td.style.backgroundColor="#8eb4da";
}
}

function WirOut(td){
if(document.getElementById||(document.all && !(document.getElementById))){
td.style.backgroundColor="#719bc5";
}
}
// Kontakt
function InfoOn(td){
if(document.getElementById||(document.all && !(document.getElementById))){
td.style.backgroundColor="#ffcc66"; td.style.color="#ffffff";
}
}

function InfoOut(td){
if(document.getElementById||(document.all && !(document.getElementById))){
td.style.backgroundColor="#ff9933"; td.style.color="#ffffff";
}
}
// Impressum
function ImpOn(td){
if(document.getElementById||(document.all && !(document.getElementById))){
td.style.backgroundColor="#fe9572";
}
}

function ImpOut(td){
if(document.getElementById||(document.all && !(document.getElementById))){
td.style.backgroundColor="#ff6633";
}
}
