לחצו כאן להפוך אותי לדף הבית
<script language="JavaScript1.2"> var thecontents=new Array() thecontents[0]="הי ומה נשמע?" thecontents[1]="טוב תודה ואתם?" thecontents[2]="איזה יופי של דבר..." var current=0
function changecontent(){ mydiv.innerHTML=thecontents[current] if (current==2) current=0 else current++ setTimeout("changecontent()",3000) } window.onload=changecontent </script>