﻿var quotes = new Array();

quotes[quotes.length] = {quote: 'The Capital Group is a professional financial services firm and will be a valuable advisor to any business or individual.  I feel very confident in recommending their services.',
author: ''};

quotes[quotes.length] = {quote: 'The Capital Group is our \"go to"\ company for all of our Commercial Insurance and Employee Benefits.  Your customer service has exceeded all our expectations...keep up the good work!',
author: ''};

quotes[quotes.length] = {quote: 'Thank you again for being so wonderful. I cannot tell you again how happy I am that we chose to use The Capital Group. We are such a small customer of yours, I know, but you have treated us so well!!',
author: ''};

quotes[quotes.length] = {quote: 'Thanks a million. It is comforting to know you guys take care of us when we need it. Customer service is everything to us.',
author: ''};

quotes[quotes.length] = {quote: 'I would like to also express my appreciation for all your efforts, they have not been missed as you worked on getting results for our employees insured with AMS and found answers to all questions that were outstanding.',
author: ''};




function getTestimonial() {
    var currIndex = Math.floor(Math.random() * (quotes.length));
    var output = '<img src="../images/quotebegin.gif" alt="begin quote" width="15" height="11" hspace="0" border="0" align="left" style="padding-right: 3px; margin-left: -15px;">' + quotes[currIndex].quote;   
    output += '&nbsp;<img src="../images/quoteend.gif" alt="" width="15" height="11" hspace="3" border="0">';
    //output += quotes[currIndex].author;
    return output;
    }
    

   