//var message_str=message_str+" "
//i="0"
//var temptitle=""
//var speed_speed="300"
//function titler(){
//if (!document.all&&!document.getElementById)
//return
//document.title=temptitle+message_str.charAt(i)
//temptitle=temptitle+message_str.charAt(i)
//i++
//if(i==message_str.length)
//{
//i="0"
//temptitle=""
//}
//setTimeout("titler()",speed_speed)
//}

var thetext=""
var started=false
var step_step=0
var times=1

function welcometext()
{
 // titler();//µ÷ÓÃTitle
  times--
  if (times==0)
  { 
	if (started==false)
	{
	  started = true;
	  window.status = hellotext;
	  setTimeout("anim()",1); 
	}
	thetext = hellotext;
  }
}

function showstatustext(txtt)
{
  thetext = txtt;
  setTimeout("welcometext()",4000)
  times++
}

function anim()
{
  step_step++
  if (step_step==7) {step_step=1}
  if (step_step==1) {window.status='¡î¡î¡î¡î'+thetext+'¡î¡î¡î¡î'}
  if (step_step==2) {window.status='¡ï¡î¡î¡î'+thetext+'¡î¡î¡î¡ï'}
  if (step_step==3) {window.status='¡ï¡ï¡î¡î'+thetext+'¡î¡î¡ï¡ï'}
  if (step_step==4) {window.status='¡ï¡ï¡ï¡î'+thetext+'¡î¡ï¡ï¡ï'}
  if (step_step==5) {window.status='¡ï¡ï¡ï¡ï'+thetext+'¡ï¡ï¡ï¡ï'}
  if (step_step==6) {window.status='¡î¡î¡î¡î'+thetext+'¡î¡î¡î¡î'}
  setTimeout("anim()",200);
}
window.onload=welcometext;
