﻿var quotes = new Array();

quotes[quotes.length] = {quote: '<span style="color: #000;"><b> [The Foreclosure Workbook]</b></span> helped reduce my anxiety so that I am able to deal with this difficult situation more rationally and less emotionally. As I go through the foreclosure-avoidance process, your book is keeping me sane.',
author: '~Beverly K.'};

quotes[quotes.length] = {quote: '<span style="color: #000;"><b>The book is simple and it\'s thorough</b></span> -- not a lot of fancy terms, but a step-by-step approach which is what I needed because I was at my wits end. ...I operated from a position of knowledge and not desparation -- most important of all... I saved my house!',
author: '~Sylvia H.'};

quotes[quotes.length] = {quote: '<span style="color: #000;"><b>The step-by-step process</b></span> Carla describes and the options available to you as a homeowner are simple and easy to read and understand. None of the gimmicks we hear so much about these days. If you follow her guidance and are disciplined in during so, you will save you home from foreclosure. We did...',
author: '~H. Scott'};

quotes[quotes.length] = {quote: 'My lender offered me only one option. Then I got the foreclosure workbook followed the step by step processes ...and they gave me four options. <span style="color: #000;"><b>I highly recommend this book</b></span> to anyone who owns a home.',
author: '~Kyle W.'};


quotes[quotes.length] = {quote: '<span style="color: #000;"><b>Great resource</b></span> for homeowners.' ,
author: '~S.J.O.'};

quotes[quotes.length] = {quote: 'Currently, my brother is stationed in Iraq, and he was not sure what to do when faced with the possibility of losing his home here in the states. ...<span style="color: #000;"><b>The Foreclosure workbook helped me</b></span> save my brother\'s house. The book was so easy to follow and apply, that we were able to save his house within two overseas phone calls! ',
author: '~Aileen F.'};


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">' + quotes[currIndex].quote;   
    output += '<img src="images/quoteend.gif" alt="" width="15" height="11" hspace="3" border="0"><br>';
    output += quotes[currIndex].author;
    return output;
    }
    

   