﻿var quotes = new Array();

quotes[quotes.length] = {quote: 'Once I switched realtors to you guys, I don\'t think the house-selling process could have gone more smoothly - thanks again for all of your help!',
author: '~ Debra L.'}; 


quotes[quotes.length] = {quote: 'Because of the many challenges we had up against us, we needed to hire not only a professional but the best there is out there. We decided to hire the Somers team! I was amazed with their work: very professional, organized, knowledgeable, and honest!',
author: '~ Monique Benvenutti'}; 

quotes[quotes.length] = {quote: 'Thank you so much for all that you did for me!  I love my new home and it wouldn’t be mine without your help.',
author: '~ Brian McLaughlin'};

quotes[quotes.length] = {quote: 'Chris and Stephanie Somers\' immediate follow-through sets them apart as true real estate professionals.',
author: '~ Steve Scuron'};

quotes[quotes.length] = {quote: 'The Somers provided us outstanding service and attention to detail. They handled the details small and large to make the purchase process go off without a hitch.',
author: '~ Andres Gomez'};

quotes[quotes.length] = {quote: 'We trust the Somers and are confident when they are on our team. Every experience with them has been outstanding.',
author: '~ Patrick Lopez'};


quotes[quotes.length] = {quote: 'I have bought and sold several properties with Chris and Stephanie over the last few years.  The aspect that makes them [outstanding] is they live and breathe real estate.  They take the time to educate me on the market [and] are an asset to me in achieving my goals.',
author: '~ Ken Lawall'};

quotes[quotes.length] = {quote: 'I really like your emailed blog a lot! The email factor is nice because I don\'t miss new ones and I think it\'s great how the content varies so widely. I really never delete without opening.',
author: '~ Lauren-Beth Harmelin'};

quotes[quotes.length] = {quote: 'It has been great following you on ActiveRain.  I wanted to write you a personal note to tell you that your blog has made a positive influence in my life.',
author: '~ Kellie Morrissey'};


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 += '<br><b>' + quotes[currIndex].author + '</b>';
    return output;
    }
    

   