//shoutout typing
shout=new shoutOut(5)
shout[0]="Battle Infinity...,"
shout[1]="I'm still ON My Rulez!"
type=shout[0]
getShout=" "
startShout=" " 
reShout=0 
function shoutOut(x){
this.length=x 
for(y=1;y<=x;y++){ 
this[y]=' '
}
} 
function typeShout(){ 
if(getShout.length==1){ 
while(type.substring(0,1)==" "){
startShout+=getShout 
getShout=type.substring(0,1) 
type=type.substring(1,type.length) 
} 
startShout+=getShout 
getShout=type.substring(0,1)
type=type.substring(1,type.length)
for(z=0;z<100;z++){ 
getShout=" "+getShout
} 
} 
else{
getShout=getShout.substring(10,getShout.length) 
} 
cpShoutoutBox.innerHTML=startShout+getShout 
if(type==""){ 
getShout=" " 
reShout++
if(reShout>shout.length){
reShout=0 
} 
type=shout[reShout]+" "
startShout="" 
setTimeout('typeShout()',20) 
} 
else{ 
setTimeout('typeShout()',20) 
} 
} 
typeShout()