var testimonials = new Array();
var authors = new Array();

testimonials[0] = 'West Lake provided very competent PeopleSoft consultants who delivered great results and helped us complete several key projects on time and within budget.  I would highly recommend West Lake to any company looking for PeopleSoft consulting resources.';
authors[0] = 'Chris Solarczyk<br>Director, Enterprise Applications Development<br>GAF Materials Corp.';

testimonials[1] = 'West Lake’s efforts at Elmet have pulled us out of the doom and gloom of an unstable E1 go-live and have placed us onto a path for success.  The transformation of our users from complete discontent to one of acceptance and understanding has been immense.  Starting with Robyn and continuing with all her people, we have created a great partnership that is built on knowledge and trust.  Their rapid response along with the right resources makes this relationship the perfect fit into my operation.';
authors[1] = 'Ray Page<br>Director IT<br>Elmet Technologies, Inc.';

testimonials[2] = 'West Lake Consulting has been the best partner we could hope to have to support our JDE needs. Everyone at West Lake have proved to be extremely knowledgeable, professional, and committed to your clients\' success each and every time we call you!';
authors[2] = 'Anne Banks<br>Project Manager<br>Appleseeds';

testimonials[3] = 'My experience in working with West Lake Consulting is the foundation of how all contract relationships should be. They knew what they needed to do, sent in the people with the right skill sets and executed upon that plan. When there were expected downtimes between tasks, they were always focused on the mission and my forecasted budget. They didn’t arrive onsite just to get their 40 billable hours in. They only billed me for what they worked. This is the basis for building a true partnership with their customer and one that fosters continued loyalty.';
authors[3] = 'Kevin J. Smith, Manager - Apps Dev<br>Tandem & PSoft<br>Wright Express Corporation';

testimonials[4] = 'Westlake was critical to us going live at our target. The Westlake team could not have worked harder to help us hit our goals. They were also crucial to meeting new needs as they arose in the hectic first weeks of a new implementation. Beyond the initial project, Westlake has been a terrific partner in supporting us after implementation. The right resources have stayed on until the job is finished, and subject area experts have been available for shorter consultations when we have needed to get a new initiative going. Finally, Autopart International has gotten great value from being part of the Westlake community of clients, sharing knowledge and experiences with other companies in our area who are facing the same Peoplesoft Enterprise / EnterpriseOne challenges that we face.';
authors[4] = 'Chris Crowley CIO Autopart International Inc.';

testimonials[5] = 'We could not have realized this success (in our OneWorld implementation) without the commitment, knowledge and direction of West Lake Consulting.';
authors[5] = 'Gary Tochterman<br>Project OneWorld Project Manager<br>Timken Super Precision';

testimonials[6] = 'I whole-heartedly believe that our successful launch at go-live was made possible by the guidance provided by West Lake Consulting. Your consultants bring credibility and pride to your firm.';
authors[6] = 'Jack Hornbeck<br>Timken Super Precision OneWorld Xe Implementation Team';

testimonials[7] = 'You bring an aura of enthusiasm which promotes productivity.';
authors[7] = 'Mike Poplaski<br>Crane & Company';

document.write('<div id="testimonials" onClick="location.href=\'testimonials.html\';"></div>');

var currentid = Math.ceil(Math.random()*(testimonials.length-1));
var timeoutid = 0;

function rotateTestimonials(){
	var obj = document.getElementById('testimonials');
	obj.innerHTML = '<span>"'+testimonials[currentid]+'"<br><br></span>'+authors[currentid];
	
	currentid++;
	if(currentid >= testimonials.length){
		currentid=0;
	}
	timeoutid = setTimeout("rotateTestimonials()",20000);
}

function pauseTestimonials(){
	clearTimeout(timeoutid);
}

rotateTestimonials();