<!--
//store the quotations in arrays
quotes = new Array(19);
authors = new Array(19);
quotes[0] = "I just wanted to tell you how much I have enjoyed using the 'Extreme Cream'. I had purchased a hand cream at a spa back in April and I was disappointed in it because it seemed to only coat my hands and didn't really absorb into my skin. Your cream seems to penetrate more into the skin.";
authors[0] = "M.H., Hesperia, CA";
quotes[1] = "I just wanted to tell you that the cream especially is amazing. I had the worst dry skin and your creme really works.";
authors[1] = "K.M., Burbank, California";
quotes[2] = "I just want to say how wonderful the Extreme cream is for sunburns...No peeling. No flaking. No pain.";
authors[2] = "B.H., San Diego, CA";
quotes[3] = "I have been using your Extreme Cream, at night, for a year, and love it. A rancher from CO. asked me for my extra jar...";
authors[3] = "E.S., Valley Center, CA";
quotes[4] = "...I won jar of your Extreme Cream. I just wanted to let you know (as if you didn't already know) that the stuff is wonderful!";
authors[4] = "N.A., Honolulu, Hawaii";
quotes[5] = "Just tried sample of extreme cream you sent with my last order. Both my husband and I loved it!! So had to order the full size.";
authors[5] = "M.W., Hartford, Connecticut";
quotes[6] = "The extreme cream works great in the extreme dry of New Mexico! It is great for chapped lips too!";
authors[6] = "M.M., Albuquerque, New Mexico";
quotes[6] = "My daughter and I met you at the Seaside Bazaar on Saturday. Wow! Your products are better than I'd hoped. The cream is incredible.";
authors[6] = "C.C., San Diego, CA";
quotes[7] = "I got the extreme cream at the street fair this,summer, and now that it has finally run out, I've got to get more!  (and more, and more)  Thank you for making this product.  My skin has never felt better!";
authors[7] = "K.M. Solana Beach, CA";
quotes[8] = "I service swimming pools and do installation and repair of pool equipment...My hands get to where there would be cracks across the grain to the meat.  Ouch!!  Three consecutive nightly applications of Extreme Cream and my hands are silky smooth and soft.  Miraculous!";
authors[8] = "Tom 'The Poolman' R., San Diego, CA";
quotes[9] = "...I bought some Extreme Cream ...First thanks for getting it to us so fast.  Such great customer service! But most of all thank you for making such a great product.  It's the only thing that has worked and really makes a HUGE difference.";
authors[9] = "W.W., Austin, Texas";
quotes[10] = "Thank You, I will certainly share the cream with friends.  I love the stuff. I have extremely dry skin, especially at this time of year.  I have tried many creams and yours is the only one that relieves the dry skin and the itching of excema.";
authors[10] = "C.F., Ontario, California";
quotes[11] = "I have received the creams and lotions.  I love them.  My friend said my hands are like baby's, but I am over 40.  I am going to have her try it too. Thank you for the wonderful products.";
authors[11] = "Y.H., Cupertino, California";
quotes[12] = "I must tell you how much we love your cream.  We purchased it at the Farmers Market in Encinitis a few months ago,  and wow!!!!!!!!!did it ever help my cuticles.";
authors[12] = "D.R., San Diego, California";
quotes[13] = "About 8 years ago, I bought a jar of Extreme Creme for my dry elbows. I have not had dry elbows since and the jar is about 25% full, so I guess it is time to get another one.";
authors[13] = "P.C., La Mesa, California";
quotes[14] = "Aaaaaah...so good to have EC (Extreme Cream) back in my life--thanks a lot, Kristen!";
authors[14] = "A.M., Solana Beach, California";
quotes[15] = "Dear Lotion Lady, I bought some lotion from you last week at the Oceanside Sunset Market.  I was looking for something to quench the dry skin on my face.  All the other lotioins seemed to strip my face dry.  I bought your Extreme Creme and Original Avocado Lotion and I LOVE it!  After just a few days of using it, my skin is hydrated and I can feel good about my skin drinking it up. I'm so glad I found you and thank you for your wonderful products.  Do you have any plans to make lip mosturizer?  I put some of the extreme creme on my lips and it helps a little.  Thank you!";
authors[15] = "T.C., Internet email";
quotes[16] = "Extreme cream is saving my hands in this cold weather. It's the best!!";
authors[16] = "D.A., San Marcos, California";
quotes[17] = "Hi Lotion Lady - I bought one jar of the extreme cream from you at the Oceanside farmers market. My 18mo old son suffers from eczema badly. We have tried many many creams and lotions. I remembered my little jar from California and tried it on him. Literally overnight his skin was flawless and soft. I've used it everyday since on his sweet skin and it has made all the difference. Thank you so much. I ordering more extreme cream for my son and for a friend. Love it!!";
authors[17] = "K., Email from Internet";
quotes[18] = "I love your lotions. The heavy duty (Extreme Cream) unscented made my hands feel like they did when I was 20. I put on the body lotion this morning and have a feeling I'm not going to run dry by afternoon. It was so nice to meet you and experience your wonderful product. I am so sorry for the absolutely abysmal weather.";
authors[18] = "W.G., Email after meeting at the Olivenhain Arts & Crafts Fair";


//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");

//done
  
//-->
