// Quote generation
tArr = new Array();
tArr.push(new Testimonial("Instantis offers the most complete, most extendible and easiest-to-use project portfolio management and strategic tracking software solution in the market.","AIT Group"));
tArr.push(new Testimonial("Instantis’s unique approach to managing multiple initiatives within and single system makes them an ideal partner for the collaborative and multi-disciplined business performance improvement approach we take to best deliver results for each of our clients.","AIT Group"));
tArr.push(new Testimonial("The deployment of Instantis EnterpriseTrack is helping us better identify and select projects, effectively replicate Six Sigma projects throughout the company, and keep executive management passionately engaged with Six Sigma. It effectively links Six Sigma to our business","McKesson Corporation"));
tArr.push(new Testimonial("Instantis has become the clear leader in enterprise software solutions for managing Six Sigma initiatives.  Of all the solutions on the market that our team reviewed, Instantis EnterpriseTrack offers the most complete package of Six Sigma capabilities combined with the most flexible and easy-to-use technology.","Air Academy Associates"));
tArr.push(new Testimonial("We see our partnership with Instantis as a great opportunity to offer a new level of strategic and project management capabilities and drive new value within our clients’ continuous process improvement initiatives.","Air Academy Associates"));
tArr.push(new Testimonial("Process supported by digital enablers is fundamental for enterprise success.  Instantis EnterpriseTrack is a recognized leader in enterprise solutions for Six Sigma and this will be a key value-add for our services to our global customers.","Tata Consultancy Services"));
tArr.push(new Testimonial("Instantis EnterpriseTrack provides us with a proven and valuable solution to address the increasing demand for enterprise-wide Six Sigma initiatives and the management of entire portfolios of business projects.","Tata Consultancy Services"));
tArr.push(new Testimonial("We knew early on that it would be far simpler, more cost effective and much faster if we could purchase a packaged solution versus building and designing a system internally.  The Instantis solution was not only complete and fully featured; it was also flexible and easily adapted to fit our specific needs.","Xerox Corporation"));

function Testimonial(quote, source)
{
	this.quote = quote;
	this.source = source;
}
	
function rotateTestimonials() {
	idx = Math.round(Math.random()* (tArr.length-1));
	document.getElementById("quoteContainer").innerHTML = "&quot;" + tArr[idx].quote + "&quot;";	
	document.getElementById("sourceContainer").innerHTML = tArr[idx].source;	
}	
