var quotes = new Array(
"I was not able to put my arm behind my back when I began treatment and now I can so therapy was a success.  Most importantly my shoulder does not hurt any more when I play golf!",
"Special thanks to Andee and Coty and all of the others who helped with my recovery.  The office staff was great and I enjoyed my massage.",
"When I would drive I had a hard time backing.  Now I can back-up with little or no pain.",
"It is nice to have a facility like this in our own little town.",
"Erica explained how everything is interconnected.  I appreciated her taking the time to explain when I had questions.  I have told others what a great job you all did while I was there.",
"I was not able to go up and down stairs without pain.  Now I can do the stairs carrying a laundry basket without pain.  I am also able to walk much longer distances without stopping to rest.",
"Before physical therapy I could barely shower and wash my own hair without being in a tremendous amount of pain.  The therapy I received here allowed me to get back to work and living pain free again and comes highly recommended.",
"Physical therapy at PT Plus has helped me do things with my left leg that I haven’t done in years.",
"The therapists and staff always made me feel welcome and comfortable.  Thanks so much for all you do.",
"I am very pleased with the results I got at PT Plus.",
"I told my Doctor you guys have an excellent facility.",
"I really appreciate your follow-up calls.",
"Cassie is an excellent therapist!",
"I couldn’t pick up anything that required the use of my thumb.  I was unable to drive because of pain.  Now I have full use of my left hand with minimal pain in my muscles.  I don’t experience numbness like I used to.",
"Very professional with a great sense of humor.",
"The front office personnel are extremely helpful and great communicators – major asset.",
"We farm and there was no way I could get into the tractor.  Now I can do about anything I want.  I can even run.  My thanks to PT Plus!",
"Everyone was so great and helpful - I have told others – If they need physical therapy call PT Plus!",
"I have and will continue to recommend PT Plus.",
"I am now pain free at night sleeping on my shoulder.  I can now put my arm behind my back.  I was not able to do that for over a year.  I can do almost everything without pain.  Thank You, Thank You, All of you – you all are the best!  You are a great group of professionals.  I recommend you to everyone I know.  Again Thank You.",
"Thanks to everyone for all of the encouragement I’ve been given.  So glad I came here.",
"I was not able to do much physically with my knee due to surgery.  However, I have been able to build up enough endurance in my knee to do light weight training and running.",
"You took time to explain my recovery and went the extra mile… you are the best!",
"I would rate this facility the best around.",
"It was difficult to lift my son without intense pain.  I had pain on a daily basis that did not allow me to work out.  Now I can pick up my son with little to no pain and feel ready to begin walking for exercise again.",
"The staff here is exceptional, very professional, and have changed my life for the good."
);

//Start off with a random position
var pos = Math.round(Math.random()*(quotes.length - 1));

function showNext() {
	if (pos == (quotes.length - 1))
	{
		pos = 0;
	}
	else
	{
		pos++;
	}
	
	document.getElementById('quote').innerHTML = quotes[pos];
}

function showPrev() {
	if (pos == 0)
	{
		pos = (quotes.length - 1);
	}
	else
	{
		pos--;
	}
	
	document.getElementById('quote').innerHTML = quotes[pos];
}
