English
<!--To achieve this effect, add the following code to the <body> area--> <script language="JavaScript"> <!-- var current = 0 var x = 0 var speed = 200 var speed2 = 5000 function initArray(n) { this.length = n; for (var i =1; i <= n; i++) { this[i] = ' ' } } action = new initArray(4) action[0]="Welcome www.downcodes.com!" action[1]="This is the website building academy!" action[2]="What you care about is what we care about!" action[3]="Thank you again for coming!" function action2() { var m = action[current] window.status = m.charAt(x++) if (x == m.length + 1) { x = 0 current++ window.status = m if (current > action.length - 1) { current = 0 } setTimeout("action2()", speed2) } else { setTimeout("action2()", speed) } } action2() //--> </script>