
quotes = new Array(11);
authors = new Array(11);

quotes[0] = "Rachael, thank you very much for your prompt and thorough responses. You are by far the most knowledgeable source I have found for dealing with my specific digestion problem. I would like to discuss it with you in more detail... I greatly appreciate your help...";
authors[0] = "Glenn S.";

quotes[1] = "Rachael, I can tell a complete difference in myself and how I feel. I feel healthier most days and can exercise better as well. I have tried the brain power sours and gum and both of those are good. I've had a few protein shakes...still convincing myself that I like them. They don't leave me hungry though. Actually I don't find myself craving food at all... Everyone keeps telling me that I look a lot better...Thanks for all of your help! It has been wonderful!!!!!";
authors[1] = "Jessica W";

quotes[2] = "Annika, Thanks for the info regarding my order—you have a great site featuring great products. It's now obvious to me that you have fantastic customer service also—you've got my business!";
authors[2] = "John C.";

quotes[3] = "Rachael, Thanks so much. I always evaluate the quality of a product by its service and you are five stars in my book and will recommend it.";
authors[3] = "Robert M.";

quotes[4] = "Believe it or not Rachael, you have helped us in the past few days as much as any doctor has in the past 2 years. Your eMails have been very specific and that is encouraging. We have been trying so many things to no avail and your specific instructions are encouraging. We don't feel like you are selling anything and all you want to do is help.";
authors[4] = "Bret W., Nashville";

quotes[5] = "Thank you so much for your time and knowledge ...and for the fantastic customer service!!!<br>I will share your products with all my girlfriends!";
authors[5] = "Melinda M.";

quotes[6] = "In my opinion, the best probiotics can be found at Rockwell Nutrition www.rockwellnutrition.net. They have a whole section of products they recommend to treat BV, and I must say it worked for me. Their probiotics are better because they are human microflora, instead of dairy ( like yogurt...etc). Yogurt has its benefits, but human microflora is the only kind that will recolonize in the vagina (so they say!).";
authors[6] = "S.C.";

quotes[7] = "I just wanted to give you some positive feedback. My dog that was diagnosed with Cushings is doing better on the supplements you suggested...My daughter's complexion is clearing from acne on the high intensity probiotics and fish oil you recommended. She actually likes the taste of the fish oil like you felt she would. Also, I was amazed at how quickly our order arrived. <br>Thanks again for everything. We have been very pleased and will be ordering again soon.";
authors[7] = "Lani H.";

quotes[8] = "I am currently (hopefully) in remission of BV & Yeast.  ...I'm am 100% sure that your Probotics is the MAJOR thing that helped cure my BV.  I was using the HMF Super Powder continuously and noticied improvement within the first week. Again, I love your products!...Thanks again and thanks for such wonderful products!";
authors[8] = "Laura";

quotes[9] = "Annika, Thanks for the quick replies and excellent service.";
authors[9] = "Jim T., Redding, CA";

quotes[10] = "...Thank you so much again for all your help. I am spreading the word about Rockwell Nutrition and I am so happy I found you guys. That Allysin Garlic by Genestra works great—It has helped my blood sugar a lot! Have a wonderful day!";
authors[10] = "Sue M.";

//calculate a random index
index = Math.floor(Math.random() * quotes.length);

//display the quotation
document.write("<DL>\n");
document.write("<DT>" + "\"" + quotes[index] + "\"\n");
document.write("<DD>" + "-- " + authors[index] + "\n");
document.write("</DL>\n");


