window.onload = display;

var tTxt = new Array("I feel confident knowing they are available to keep our systems operating efficiently."
	,"OSIbeyond can be relied upon to get the job done well."
	,"They allowed our team to focus on our business instead of wasting time dealing with IT issues and downtime."
	,"OSIbeyond has proven to be one of our most dependable business allies in the area"
	,"I recommend OSIbeyond without hesitation."
        ,"OSIbeyond has certainly gone out of their way to resolve any issues we may have had."
        ,"OSIbeyond has made Fortune 500 networking infrastructure available for our small business.");
var tAuthor = new Array("President"
	,"President"
	,"President & CEO"
	,"Regional Director"
	,"Managing Attorney"
        ,"CFO"
        ,"Managing Director");

var tCompany = new Array("Rose Financial Services"
	,"Invenda Corp."
	,"Inserso Corp."
	,"Summit Educational Group"
	,"Law Offices of J.W. Nesari"
        ,"Consortium for School Networking"
        ,"Trusted Integration, Inc.");
	
function rotate()
{
	thisT++;
	if(thisT == tTxt.length)
	{
		thisT = 0;
	}
	document.getElementById("tTxt").innerHTML = tTxt[thisT];
	document.getElementById("tAuthor").innerHTML = tAuthor[thisT];
	document.getElementById("tCompany").innerHTML = tCompany[thisT];
	
	setTimeout("rotate()",8*1000);
}

function display()
{

	thisT = Math.floor(Math.random()*tTxt.length);
	
	document.getElementById("tTxt").innerHTML = tTxt[thisT];
	document.getElementById("tAuthor").innerHTML = tAuthor[thisT];
	document.getElementById("tCompany").innerHTML = tCompany[thisT];
	rotate();
}
		
	
