/*=========================================================================================
名称：循环滚动的标题
描述：循环滚动的标题。
=========================================================================================*/
<!--
var t_titleRoll=document.title+'↓※◆◇◆← →★△■〓↑'
function t_scrollTitle()
{
	document.title = t_titleRoll.substring(1,t_titleRoll.length) + t_titleRoll.substring(0,1);
	t_titleRoll = document.title.substring(0,t_titleRoll.length);
}
//特效启用函数
function startTitleEffect()
{
	setInterval(t_scrollTitle,300);
}
//-->