msg = "＜じゃんじゃんバリバリ稼いでや！！＞　2008年1月1日リニューアルオープン！　";
stcnt = 0;	//　文字を表示する場所
wid =333;	//　表示するウインドウ幅
blnk = "";
for(i=0; i<wid; i++) blnk += " ";
str = blnk + msg ;	//　実際に表示する文字
timeID = 0;	//　割り込み用

//　文字を移動させる
function scroller()
{
	status = str.substring(stcnt++,stcnt+wid);
	if (stcnt>msg.length + wid) stcnt=0;
	clearTimeout(timeID);
	timeID = window.setTimeout("scroller()",100);
}
scroller();