var testimonials=['I\'ve waited for over a week to get my order from other websites. I love knowing I\'ll have it delivered in two days from you guys.<br>Robert - Scottsdale, AZ', 'I used to pay twice as much to buy my products at GNC. I\'ll never make that mistake again.<br>Craig - Buffalo, NY', 'I ordered Monday morning, and UPS delivered it to my office at 2:00 PM Tuesday afternoon. I\'m extremely impressed.<br>Brian - Los Angeles, CA', 'Can\'t beat the prices, selection, and fast delivery. You\'ve earned a customer for life.<br>Bobby - Wichita, KS', 'I don\'t know how you offer the lowest prices AND guarantee delivery faster than everyone else, but I love it!<br>Nate - Orlando, FL', 'Excellent customer service, fast shipping, and low prices. What more could you ask for?<br>Eric - Berkeley, CA'];

function GetRandomTestimonials() {
    TestimonialsQty = testimonials.length;
    randomPos = Math.floor(Math.random()*TestimonialsQty);
    return testimonials[randomPos];
}

document.write(GetRandomTestimonials());