Hallo Jeremy,
zusätzlich zu dem schon angemerkten:
function contentchange(container1,container2,container3) {
document.getElementByID(container1).style.backgroundColor='#ff6600';
document.getElementByID(container1).style.backgroundColor='#ff6600';
einmal recht.
document.getElementByID(container1).style.visibility='visible';
document.getElementByID(container2).style.backgroundColor='##ffffff';
document.getElementByID(container2).style.backgroundColor='#ffffff';
überflüssig, da das Element ja versteckt wird.
document.getElementByID(container2).style.visibility='hidden';
document.getElementByID(container3).style.backgroundColor='##ffffff';
document.getElementByID(container3).style.backgroundColor='#ffffff';
s. o.
document.getElementByID(container3).style.visibility='hidden';
}
Gruß, Jürgen