var text="w w w . i n d o n e s i a n u n d e r g r o u n d . c o m                                                                                                                  I n d o n e s i a ' s   u n d e r g r o u n d   r o c k e r s    r i g h t    p l a c e   t o   b e . . .                                                                                                   B E n S 1 . 5   c o p y r i g h t s  :  2 0 0 4 ,   2 0 0 5   d e v e l o p e d   b y   i n d o n e s i a n u n d e r g r o u n d . c o m   c r e a t i v e   t e a m.";
var length=text.length;
var width=100;
var pos=-(width+2);
function scroll()
{
	pos++;
	var scroller=" ";
	if(pos==length)
	{
		pos=-(width+2);	
	}
	if(pos<0)
	{
		for(var i=1;i<=Math.abs(pos); i++)
		{
			scroller=scroller+" ";
		}
		scroller=scroller+text.substring(0,width-i+1);
	}
	else
	{
		scroller=scroller+text.substring(pos,width+pos);
	}
	window.status=scroller;
	setTimeout("scroll()",100);
}
