// 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 consultants have all been top-end both technically and how they fit in with our team.&rdquo;</p><h4>Gregg Coder</h4><h5>Electric Lightwave</h5>"
testimonial[2]="<p>&ldquo;CSG has a knack for finding great talent and deploying them in the most effective ways.&rdquo;</p><h4>Lance Kidd</h4><h5>Halton Co.</h5>"
testimonial[3]="<p>&ldquo;CSG understands the need for providing legendary customer services, and has come through for me every time. I prize my relationship with the CSG team.&rdquo;</p><h4>Lance Kidd</h4><h5>Halton Co.</h5>"
testimonial[4]="<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[5]="<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[6]="<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[7]="<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 of the project so we could meet our timeline.&rdquo;</p><h4>Robert Judge</h4><h5>Wellpartner, Inc.</h5>"
testimonial[8]="<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>"


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]
}