Hmmm wats up with this.
<script language="javascript">
var day=0;
function showmnth() {
if (!document.layers && !document.all)
return;
var wkday = new Array('Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday');
day=day+1;
movingdate = wkday[day];
if (document.layers) {
document.layers.clock.document.write(movingdate )
document.layers.clock.document.close();
}
else if (document.all) {
clock.innerHTML = movingdate;
}
}
setTimeout("showmnth()", 1000)
}
window.onload = showmnth;
</script>
i want that to skip through the array, repeating. but NOTHING will work:( Doesnt even show text. But maybe you guys could fix it, as you have most likely had more js meetings than me