/* This JavaScript (Random Quotes) developed by Scott Clark
The Source is available at http://www.clarksco.com/blog/
Copyright 2005 Clark Consulting */

var num_of_quotes = 6;
quotes = Math.floor (num_of_quotes * Math.random());

if (quotes==0) {
body="“It is a friendly environment, and I made real progress”";
title=" — M.A.Trusler";
}

if (quotes==1) {
body="“When I began therapy on my shoulder, I must admit, I was skeptical. I had done therapy at another place and after a lot of time the results were the same, unlike at Atlas where Vicky herself worked with me personally, three times a week. My shoulder went from barely lifting to full range of motion in 4 weeks. The warm and funny atmosphere always made me want to come to therapy. Toni and Vicky are wonderful people.”";
title=" — LaTonya  V. Whybrew";
}

if (quotes==2) {
body="“Vicky and her staff have helped rehab parts of me several times. The first time she rehabbed my knees and ankles so that I would go on to run several 10K’s (and counting!). The next opportunity involved rehab to my wrist following carpal tunnel surgery. She taught me how to care for my body and prevent injuries. I’m stronger than ever now!”";
title=" — Sandy Kurtzman";
}

if (quotes==3) {
body="“Vicky and her staff helped me recover following a spinal fracture of my tibia. Twice a week I went, and we worked together to help me recover from my accident. They even baked me cookies!”";
title=" — Andrew Kurtzman";
}

if (quotes==4) {
body="‘My experience with Atlas Physical Therapy was a good one. The people were kind, considerate and most of all, they are professional. They set a goal for you and one for themselves. You go from good to better then best.”";
title=" — Wilma E.";
}


if (quotes==5) {
body="“Before starting physical therapy I didn’t think I would ever regain full motion to my shoulder. Now my shoulder moves as though there was never a problem”";
title=" — Mary Shepherd";
}

document.write('<div align=left>');
document.write(''+ body +'');
document.write('<strong>' + title + '</strong><br>');
document.write('</div>');
