// ³ÌÐò¿ª·¢£º£¨¦á¦ä¦á£©QQ:51935 E-mail:zengrong@qq.com

var thissize=12
var textfont="ËÎÌå"

var textcolor= new Array()
textcolor[0]="000000"
textcolor[1]="111111"
textcolor[2]="222222"
textcolor[3]="333333"
textcolor[4]="444444"
textcolor[5]="555555"
textcolor[6]="666666"
textcolor[7]="777777"
textcolor[8]="888888"
textcolor[9]="999999"
textcolor[10]="AAAAAA"
textcolor[11]="BBBBBB"
textcolor[12]="CCCCCC"
textcolor[13]="DDDDDD"
textcolor[14]="EEEEEE"


var i_blurstrength=10
var i_message=0
var i_textcolor=0

function blurtext()
{
	if(document.all)
	{
		if (i_blurstrength >=-2)
		{
			if (i_textcolor >=textcolor.length-1) {i_textcolor=textcolor.length-1}
			blurthis.innerHTML="<span id='blurpit1' style='position:absolute;visibility:visible;width:550px;top:-6px;left:5px;filter:blur(add=0,strength="+i_blurstrength+",direction=90);font-family:"+textfont+";font-size:"+thissize+"px;color:"+textcolor[i_textcolor]+"'>"+message[i_message]+"</span>";
			document.close()
			i_blurstrength=i_blurstrength-2
			i_textcolor++
			var timer=setTimeout("blurtext()",60)
		}
		else
		{
			if (i_textcolor >=textcolor.length-1)
			{
				i_textcolor=textcolor.length-1
			}
			blurthis.innerHTML="<span id='blurit1' style='position:absolute;visibility:visible;width:550px; top:-6px;left:5px;filter:blendTrans(duration=4.2);font-family:"+textfont+";font-size:"+thissize+"px;color:FFFFFF'>"+message[i_message]+"</span>";
			i_message++
			if (i_message>=message.length){i_message=0}
			i_blurstrength=20
			i_textcolor=0
			clearTimeout(timer)
			var timer=setTimeout("blurtext()",5000)
		}
	}
}
