Das Script hatte ich interessehalber noch leicht verbessert, aber unter NN läuft es in dieser Form nicht und Du brauchst es ja auch nicht:
<script>
function changeBG(e) {
e = window.event;
//alert(e.type);
if (e.type.toUpperCase()=='MOUSEOVER') this.style.backgroundColor = '#ccc';
else /*if (e.type.toUpperCase()=='MOUSEOUT')*/ this.style.backgroundColor = '#eee';
}
function init() {
document.getElementById('c1').onmouseover = changeBG;
document.getElementById('c1').onmouseout = changeBG;
document.getElementById('c2').onmouseover = changeBG;
document.getElementById('c2').onmouseout = changeBG;
}
</script>