<!--
//store the quotations in arrays
quotes = new Array(8);
authors = new Array(8);
quotes[0] = "I received my lotion and it is hard to put into words just how much I love it. I received it on Monday and immediately tried it. The lotion itself is so silky and smooth and I love the way it has a light scent. I also love the way it does not leave any greasy feel to the skin.";
authors[0] = "L.E., Biloxi, MS";
quotes[1] = "... The lotion is perfect for me. Knowing that a particular lotion doesn't work for everyone, I feel very fortunate to have found yours.";
authors[1] = "E.G., Charlotte, North Carolina";
quotes[2] = "I am so lucky to have discovered your lotions. My chronic eczema condition is no longer chronic! My skin drinks up the lotion! Living in the desert has been so hard on my skin, but I have found my cure. I believe you're a God-send to me.";
authors[2] = "M.B., Las Vegas, Nevada";
quotes[3] = "My friend Cheryl C. swears by your products so I thought I would give them a try. She says nothing works better than your stuff! Looking forward to the lotion. My hands take a beating every day since I am in water constantly.";
authors[3] = "A.W., Las Vegas, Nevada";
quotes[4] = "I am a Massage Therapist, located here in Portland OR...I have heard of your lotion from a client that is a flight attendant and she just raves!";
authors[4] = "T.T. LMT, Portland, OR";
quotes[5] = "Kristen, thanks for sending the new bottle of the original lotion.  The smell is so intoxicating!  I'm so happy with your products, I'm telling everyone.  My friend loved the gift set.  Thanks again.";
authors[5] = "J.C., Kirkland, Washington";
quotes[6] = "Hi Kristen, I just got back from a manicure and pedicure and my lady complimented on how much softer my hands, legs and feet were and I wanted to let you know since your lotion has made the difference. She asked me to give her the web site which I did. Terrific!!";
authors[6] = "S.C., King George, Virginia";
quotes[7] = "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[7] = "T.C., Internet email";


//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
  
//-->