	orig = "         BONEKA - materiály a technologie pro výrobu reklamy                     ";
	text = "         BONEKA - materiály a technologie pro výrobu reklamy                     ";
	text2 = "BONEKA - materiály a technologie pro výrobu reklamy";

	window.status = orig;
	x = 0;
	y = 0;
	function rotate()
	{
		++x;
		text = text.substring(1, text.length);
		if(x>50)
		{
		text = text+text2.charAt(y);
		++y;
		}
		++x;
		window.status = text;

		if(x==142) 
		{
			window.stutus=orig;
			text = orig;
			x=0;		
			y=0;
		}

	}
	setInterval("rotate();",100);



