var myquotes = new Array(
	'<span class="testimonaltext">“You guys should be proud of your plant!”  -New customer after lean tour</span>',
	'<span class="testimonaltext">“I always go to you first, you are the pin experts”  -Plastics Molder</span>',
	'<span class="testimonaltext">“...you took the time to move right in and solve my problem so that I could handle other business matters." -Insert Customer</span>',
	'<span class="testimonaltext">“What a relief it was to speak with you over the phone!” -Technical Support Call</span>',
	'<span class="testimonaltext">"These Speedserts are the best inserts for our application”  -Diecaster to telecom customer</span>',
	'<span class="testimonaltext">"I like dealing with your people”  -Military contractor</span>',
	'<span class="testimonaltext">"We are in this together”  -MRO distributor</span>',
	'<span class="testimonaltext">"If you need a special insert, Groov-pin are experts”  -Aerospace distributor to a customer</span>',
	'<span class="testimonaltext">"Your customer really values you as a supplier” -Referral</span>',
	'<span class="testimonaltext">“Outstanding Product Development Support and Service” -Supplier Award</span>',
	'<span class="testimonaltext">“You really know and understand our business” -Key customer</span>',
	'<span class="testimonaltext">”Today… price, quality and service are a given. You bring something else to the table!” -Mexico VMI customer</span>',
	'<span class="testimonaltext">“Your production flexibility is what I need and what I get” -Aerospace component manufacturer</span>',
	'<span class="testimonaltext">“You are in the top 3 of the 60 companies I audit for continuous improvement” -Quality auditor</span>',
	'<span class="testimonaltext">“QC said the finish on your parts was so much better than the last supplier.  Well done.” -Director of Materials</span>',
	'<span class="testimonaltext">“Thank you for exceptional service” -New customer</span>' // Last quote should not have a comma at the end
	);

function rotatequote()
{
	thequote = myquotes.shift(); //Pull the top one
	myquotes.push(thequote); //And add it back to the end
	
	document.getElementById('quotetext').innerHTML = thequote;
	// Timeout = (the number of seconds you want) * 1000
	t=setTimeout("rotatequote()",5000);
}

