Ho risolto così
allora dentro head
[html]
<script language="javascript">
var light = false;
var ms = 1000;
function lamp() {
//alert(ele);
//alert(light);
if (light == false) {
document.getElementById(ele).style.backgroundColor='#ccc';
light = true;
} else {
document.getElementById(ele).style.backgroundColor='#fff';
light = false;
}
setTimeout('lamp()',ms);
}
</script>
[/html]
e alla fine del mio body
[html]
<script language="javascript">
var ele = 'home';
document.getElementById(ele).style.backgroundColor='#fff';
setTimeout('lamp()',ms);
</script>
[/html]
mi sapreste comunque dire xkè non funzionava questo ?
setTimeout("lamp('home')",1000)