﻿var quotes = new Array();


quotes[quotes.length] ={quote: 'The other side of the divorce case wanted Kate to be the mediator. We accepted, and Kate moved the case from a complete impasse to a complete settlement quickly. The last part took the involvement of counsel as well, but that part was done quickly and efficiently, with a definitive result. I\'d do it again.'};

quotes[quotes.length] = {quote: 'Thank you again for all your advice and professionalism.'};

quotes[quotes.length] = {quote: 'It was a great experience.'};

quotes[quotes.length] = {quote: 'Counsel followed up with timely advice.'};

quotes[quotes.length] = {quote: 'The attorney handling my case stayed in contact with me throughout the process.'};

quotes[quotes.length] = {quote: 'Already have recommended Reese Law Office to a friend or colleague.'};

quotes[quotes.length] = {quote: 'The representation was always professional, courteous and responsive.'};

quotes[quotes.length] = {quote: 'They always had time to speak to me about my case and various actions that may have been taken.'};

quotes[quotes.length] = {quote: 'Listened and showed care, concern and understanding which is very important to me as a person.'};

quotes[quotes.length] = {quote: 'Counsel protected me.'};

quotes[quotes.length] = {quote: 'I have made at least 3 referrals.'};

quotes[quotes.length] = {quote: 'Thank you for trusting us as much as we trusted you.'};

quotes[quotes.length] = {quote: 'Explained everything pertaining to my case clearly.  Represented my interests.'};

quotes[quotes.length] = {quote: 'I am very pleased with how I have been represented.'};

quotes[quotes.length] = {quote: 'My counsel really helped me understand the more complex information.  She was very patient with me asking so many questions.'};

quotes[quotes.length] = {quote: 'Thorough follow-up and preparation.  Wrote what we were going to do, then we did it.'};


quotes[quotes.length] = {quote: 'Very professional, responds quickly, easy to work and interact with.'};

quotes[quotes.length] = {quote: 'It was a great experience.'};

quotes[quotes.length] = {quote: 'The representation was always professional, courteous and responsive.'};

quotes[quotes.length] = {quote: 'My counsel did a good job of helping me feel that she viewed my case as \'important\' and she provided good advice.'};

quotes[quotes.length] = {quote: 'Kate is an excellent listener.  I felt during my introductory interview, and throughout my case, totally confident, comfortable and extremely satisfied with Kate Reese and her associates.  I am confident that Kate will always do everything necessary within a client\'s economic means to protect them. I have total faith that this is true.'};

quotes[quotes.length] = {quote: 'Divorce is difficult. Kate made the process as easy as one could. Kate was honest and straightforward while working with a difficult client (me!). I have recommended her to several friends and colleagues and will continue to do so. In a word.... I TRUST Kate.'};

quotes[quotes.length] = {quote: 'Communicated well with opposing party\'s attorney.  Explained in detail my situation and how best to handle it.  I only wish I had called this law firm much earlier in my process.'};

quotes[quotes.length] = {quote: 'Thanks for your help...I am in a much better place than the last two Christmases.'};




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

   
