var texts = new Array();texts[0] = "высокое качество";texts[1] = "профессиональное оборудование";
		
		

var time = 2400;
var current = 0;
var style="font-family: Courier New; font-size: 20; color: 800080; font-weight: bold; font-style: none;";

function scrolltext()
{
	fortextscroll.innerHTML = "<span style=\""+style+"\">" + texts[current] + "</span>";
	current++;
	if(current == texts.length) current = 0;
	setTimeout("scrolltext()", time);
}

setTimeout("scrolltext()", time);
