// JavaScript Document
var tot_rec_adv = "6";
var texts_adv = new Array(tot_rec_adv);
texts_adv[0] = 'What stood out to me was their immediate responsiveness to any requests and quick turnaround time in building our website and fixing problems after the site launch. - <b>Susan Youngquist, President </b> - Masterful Coaching, Inc';
texts_adv[1] = 'We are continually working with  Fixity on a daily basis as our  e-commerce is growing. They have been indispensable  help in our cyber strategy. - <b>Manesh Shah, President</b> - General Chemical Corp.';
texts_adv[2] = 'It was a pleasure and a very smooth process working with Fixity Technologies and his team on my website. I was thouroughly impressed and satisfied. - <b>Sean Woolsey, President.</b> - StatusFoe,';
texts_adv[3] = 'I can recommend Fixity to every nice person/company who wants something really very special and unique, a website which gives exactly the message of your person and of your business. A website which touches exactly the part in the soul of the people you want to reach. Fixity turnaround time and quality in delivering a product is amazingly great.- <b>William Kidd, - President </b> - 3W Studios Integrated Web Solutions, USA.';
texts_adv[4] = 'Fixity Technologies not only serve the customers with high quality web services and solutions, but satisfy them with excellent customer relationship management as well. We have yielded lot of genuine buyers all over the world. They have provided us a better tool in boosting our business globally. - <b>Fraser Seymour - Vice President </b> - Accelerate Engineering, USA.';
texts_adv[5] = 'Very good, they are professional. Project coordinator, Developer are very good and have together managed and run the project very well. Overall working with Fixity was good. Project outcome has been satisfactory. Our I phone application works really good and got registered with apple store. We are looking forward to continuing to work with Fixity in future. - <b>Nine Multimedia Inc, Tom Marchesello - CEO</b> - USA';

window.onload = oncall;
var interval_adv = 10000;
function rotate2(step)
{
	if( step == undefined || step==null || step=="[object Event]")
	{
		step = 1;
	}
	step = parseInt(step);
	if(tot_rec_adv < 1)
	{
		if(texts_adv[0]==0)
		{
			document.getElementById('test_rot_id').innerHTML = "&lt;span class='poll_head'&gt;No Testimonials&lt;/span&gt;";
		}
	}
	else
	{
		document.getElementById('test_rot_id').innerHTML = texts_adv[step-1];
		step++;
		if(step <= tot_rec_adv)
		{
			setTimeout("fadein("+step+")",interval_adv);
		}
		else
		{
			setTimeout("fadein(1)",interval_adv);
		}
	}
}
function fadein(step,opac)
{
	var out_n = "test_rot_id";
	if(opac == undefined || opac == null || opac == "")
	{
		opac = 100;
	}
	opac = parseInt(opac);
	document.getElementById(out_n).style.background = "#ffffff";
	document.getElementById(out_n).style.filter = "progid:DXImageTransform.Microsoft.alpha(opacity="+opac+")";
	var x = opac / 101;
	document.getElementById(out_n).style.opacity = x;
	document.getElementById(out_n).style.MozOpacity = x;
	document.getElementById(out_n).style.KhtmlOpacity = x;
	opac = opac - 20;
	if(opac > 0)
	{
		var func = "fadein('"+step+"',"+opac+")";
		setTimeout(func,100);
	}
	else
	{
		fadeout(step);
	}
}
function fadeout(step)
{
	var out_n = "test_rot_id";
	document.getElementById(out_n).style.background = "#ffffff";
	document.getElementById(out_n).style.filter = "";
	document.getElementById(out_n).style.opacity = "";
	document.getElementById(out_n).style.MozOpacity = "";
	document.getElementById(out_n).style.KhtmlOpacity = "";
	rotate2(step);
}
function oncall()
{
	if(typeof window.rotate2 == 'function') {
		rotate2(1);
	}
}

