var currentpos, timer;   
function initialize() {   
	timer = setInterval("scrollwindow()", 80);   
}   
function sc() {   
	clearInterval(timer);   
}   
function scrollwindow() {   
	var scrollPos;   
	if (typeof window.pageYOffset != 'undefined') {   
		scrollPos = window.pageYOffset;   
	} else if (typeof document.compatMode != 'undefined'   
			&& document.compatMode != 'BackCompat') {   
		scrollPos = document.documentElement.scrollTop;   
	} else if (typeof document.body != 'undefined') {   
		scrollPos = document.body.scrollTop;   
	}   

	currentpos = scrollPos;   
	window.scroll(0, ++currentpos);   
	if (currentpos == scrollPos) {   
		//sc();   
	}   
}   
document.onmousedown = sc;   
document.ondblclick = initialize; 
 window.onload= initialize; 

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(txt)
{
  thetext = txt;
  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.attachEvent('onload',welcometext);
    
