CurrentText="" 
var CurrentPosition=0; 
MsgIndex=0; 
var msgarray=Array("Welcome to Capella Online !","The Internetworking Specialist","Enjoy Your Time","www.capella.co.id") 
function StartTyping() { 
      CurrentText    = CurrentText + msgarray[MsgIndex].charAt(CurrentPosition) 
      status = CurrentText 

if (CurrentPosition >= msgarray[MsgIndex].length) { 
CurrentPosition=1; 
window.setTimeout("StartScrolling()",80); 
} else { 
CurrentPosition++; 
window.setTimeout("StartTyping()",10); 
   } 
} 
function StartScrolling() { 
window.status=msgarray[MsgIndex].substring(CurrentPosition, msgarray[MsgIndex].length); 
if (CurrentPosition >= msgarray[MsgIndex].length) { 
CurrentPosition=0; 
CurrentText="" 
if (MsgIndex < msgarray.length-1) 
MsgIndex++ 
else{MsgIndex=0} 
window.setTimeout("StartTyping()", 10); 
} else { 
CurrentPosition++; 
window.setTimeout("StartScrolling()", 80); 
   } 
} 
// End --> 