// JavaScript Document
var globaltotal = 6;
var curindex = 0;
function setTestiText(txt)
{
	document.getElementById('testi1234').innerHTML = txt;
}
function fadetext(opa)
{ 
	if(opa)
	{
		document.getElementById('testi1234').style.opacity = opa/10;
		document.getElementById('testi1234').style.filter = "alpha(opacity="+opa+")";
	}
	if(opa==100)
	{
		setTimeout("fadetext("+(opa-1)+")", 10000);
	}
	else if(opa>0)
	{
		setTimeout("fadetext("+(opa-5)+")", 100);
	}
	else if(opa<=0)
	{
		if((curindex+1)>=globaltotal)
		{
			curindex = 0;
		}
		else
		{
			curindex += 1;
		}
		starttesti(curindex);
	}
}
function starttesti(ndex)
{
	if(globaltotal)
	{
		setTestiText(testis[ndex]);
		fadetext(100);
	}
}

var testis = [];
testis[0] = "Call toll free: 1.866.2My.Host<br /> (Dial: 1-866.269.4678) International: +1.702-363-4678<br /> A MyHostingTeam representative<br /> will personally attend to your call.<br /> Place your web hosting or web host reseller order <a href=\"https://myhostingteam.com/secure/\">here</a> ";
testis[1] = "After working with another company for over a year we tried <br /> MyHostingTeam.They helped us with simplifying  our client<br />   management so that  we could concentrate on our growth <br />strategy.   If only we had made the switch a   year ago. <br />- Richard W.";
testis[2] = "We are working now with MyHostingTeam for more than a <br />year and we are completely satisfied with their professional<br />work and the ablility to meet tight deadlines.<br /> - Susanne J.";
testis[3] = "MyHostingTeam developed our complete Web Portal. The<br />level of knowledge and expertise is really great. We definitely<br />will choose MyHostingTeam for future projects again.<br /> - John H.";
testis[4] = "Recently, I had the pleasure to work with MyHostingTeam<br /> together. I only can say good things about our collaboration <br />and I can highly recommend MyHostingTeam to anyone<br />  who is looking for a company doing web development.<br /> - Roy B.";
testis[5] = "MyHostingTeam.com made our outsourcing project so easy. <br />The work they had done was above our expectations and we <br />couldn&#39;t be more happy with their overall performance and service.<br />Thanks TEAM!<br />- Laura S.";
starttesti(0);