﻿var testimonial1 = {
    testimonialText: "Venture was AMAZING! The photographer was lovely and really helped us to act natural because we were all a bit nervous. We had lots of fun and a laugh, we couldn’t have asked for a better time. THANK-YOU!",
    testimonialPerson: "Elizabeth",
    testimonialStudio: "Chester"
};

var testimonial2 = {
    testimonialText: "Thank you for capturing a special time in our lives! The experience was truly amazing!",
    testimonialPerson: "Kirsty",
    testimonialStudio: "Fareham"
};

var testimonial3 = {
testimonialText: "It was a great day for me, my boyfriend and little girl. The photos turned out great. Thanks for a great day",
    testimonialPerson: "Melanie",
    testimonialStudio: "Lincoln"
};

var testimonial4 = {
    testimonialText: "Its nice to think that we will always have them and we can pass them down through generations to come.",
    testimonialPerson: "Martin",
    testimonialStudio: "Derby"
};

var testimonial5 = {
    testimonialText: "We had so many pictures to choose from - fun, sexy, serious, chilled and funky ones! We'll cherish our pics, especially when we're old and wrinkly!",
    testimonialPerson: "Katy",
    testimonialStudio: "Cambridge"
};

var rnd = Math.round((Math.random() * 5));
if (rnd == 0) rnd = 1;
var testimonial = eval("testimonial" + rnd);
if (testimonial != null) {
    var txtElement = document.getElementById("testimonialText");
    var nameElement = document.getElementById("testimonialName");
    var studioElement = document.getElementById("testimonialStudio");
    txtElement.innerHTML = testimonial.testimonialText;
    nameElement.innerHTML = testimonial.testimonialPerson;
    studioElement.innerHTML = testimonial.testimonialStudio;
}

