
var imageArray = new Array(
"testimonial/ramona.jpg",
"testimonial/lashika.jpg",
"testimonial/ruby.jpg" ,
"testimonial/maria.jpg",
"testimonial/lydia.jpg" 
);

var textArray = new Array(
"“Grandma, I love your products. And I love the results I get! Here’s a photo my boyfriend took after I followed your advice.”",
"“I use the oils and powders. My husband carries the lucky Gemstones.. It’s all good..”" ,
"“Ihe first time I contacted Grandma she sent me something that chased off a bad jinx. I been with her for years now. I just love it.”",
"“My Mother told me about you when I was going through some bad times.    I’m so glad she did. Since using your wonderful mixes and jewelry everything has gotten alot better.”",
"“I like spiritual and lucky Charms. I’ve tried alot of different things Yours are the best.  I like the way you build up your customers and make us stronger. Here’s a picture of me with the winnings I told you about.”"
);

var nameArray = new Array(
"Ramona H.",
"Lashika + Jerry C.",
"Ruby M.",
"Maria T.",
"Lydia J." 
);

var locationArray = new Array(
"Las Vegas, NV",
"San Diego, CA",
"Col. S.C.",
"Laredo, TX",
"Massapequa, N.Y."
 );

/*!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!*/

//DO NOT TOUCH BELOW THIS LINE!!!!
var img = "";
var text ="";
var name = "";
var loc ="";

function randomizeTestimonial()
{
   ranSize = textArray.length-1;
   ranNum=Math.round(Math.random()*ranSize);
   img=imageArray[ranNum];
   text=textArray[ranNum];
   name=nameArray[ranNum];
   loc=locationArray[ranNum];
}