// This file requires mootools.js

var i = 0
var testimonial = new Array()
testimonial[0]="<p>&ldquo;I appreciated getting the right people at the right time.&rdquo;</p><h4>Nancy O'Halloran</h4><h5>Oregon State Treasury</h5>"
testimonial[1]="<p>&ldquo;CSG has consistently delivered great results on a number of mission-critical projects for us.&rdquo;</p><h4>Larry Luck, CIO</h4><h5>Schnitzer Steel Industries</h5>"
testimonial[2]="<p>&ldquo;I knew of CSG's reputation for quality work. Talking to references helped to push the decision over the top. I would definitely recommend CSG.&rdquo;</p><h4>Steve Dunaway</h4><h5>DSI Technology Escrow Services</h5>"
testimonial[3]="<p>&ldquo;CSG truly understands the suite of Microsoft technologies and they were very efficient in defining, building and deploying the new system.&rdquo;</p><h4>Keith Nelson</h4><h5>Ruby Receptionists</h5>"
testimonial[4]="<p>&ldquo;CSG took on an extremely challenging web project that had severe time constraints. They delivered it with excellence and provided outstanding communication and management.&rdquo;</p><h4>Robert Judge</h4><h5>Wellpartner, Inc.</h5>"
testimonial[5]="<p>&ldquo;We have several projects going on with CSG right now, and I have great faith in their ability to execute. &rdquo;</p><h4>Rick Rives, President</h4><h5>Atlantic Plant Maintenance</h5>"
testimonial[6]="<p>&ldquo;Our first ever custom application project launched ahead of schedule, under budget and without any user impacting bugs. It’s been an all around fantastic experience! &rdquo;</p><h4>Brian Irvine, CIO</h4><h5>Unitus Community Credit Union</h5>"


prevQuote = function() {
	i-=1
	if (i<0) i=testimonial.length-1
	$('quote').innerHTML = testimonial[i]
}
nextQuote = function() {
	i+=1
	if (i==testimonial.length) i=0
	$('quote').innerHTML = testimonial[i]
}
getQuote = function(num) {
	$('quote').innerHTML = testimonial[num]
}