var quotes = [
  {
    text: "As a busy mother it can not be stressed highly enough how nice it is to be given a work schedule which can be totally relied upon. It is also most refreshing to find someone who understands the necessity for adequate preparation; the superb finish is testament to your skills.",
    cite: "Karen Gilbert",
    link: "/references#gilbert"
  },
  {
    text: "Thanks very much for the work you have done... I am really pleased with how my house is looking. I will certainly contact you again should I need any work in the future.",
    cite: "David Sherriff",
    link: "/references#sherriff"
  },
  {
    text: "Our house is very old and throws up a lot of 'surprises' when doing DIY, but Glen explaines any changes or extras that are needed and still completes on time. When he has left there is no cleaning up or putting back to do, he puts the room back just as he found it... marvellous.",
    cite: "Sarah-Jane Searl",
    link: "/references#searle"
  },
  {
    text: "My partner and I were very grateful for his assistance in matching colour schemes and his advice on the different finishes available to us. We were delighted with the results and wouldn't hesitate to call Mr Riggs next time we need some work carried out on the house.",
    cite: "Carol Peake",
    link: "/references#peake"
  },
  {
    text: "Not only was the standard of your painting exemplary, but the time you took to communicate what you were doing was most helpful. Thank you again for preventing my husband from committing any more DIY faux-pars, and all at what I would consider to be a very reasonable cost.",
    cite: "Karen Gilbert",
    link: "/references#gilbert"
  },
  {
    text: "I am happy to recommend Glen Riggs, The Plymouth Painter, to anyone who wants a thoroughly professional job done at a reasonable price. Glen has recently carried out two major painting projects at St. Edwards Church, Eggbuckland and we are delighted with the results.",
    cite: "John Buckingham",
    link: "/references#buckingham"
  },
  {
    text: "We are very pleased with the service that we have received from you and would not hesitate to recommend you and use you again.",
    cite: "Denise Gard",
    link: "/references#gard"
  },
  {
    text: "Glen wallpapered two bedrooms and they look beautiful. He will be painting the hall, stairs and landing next. He is a clean, efficient decorator, who takes pride in his work. If you are looking for a reasonably priced job, I would highly recommend him.",
    cite: "Jean Haydock",
    link: "/references#haydock"
  },
  {
    text: "Thank you all for your hard work, particularly on the very hot days. I think the house looks great.",
    cite: "Charles Becker",
    link: "/references#becker"
  }
];

var index = 0;

function rotateQuote(){
  $('#quote div').fadeOut('slow', function(){

    index++;

    if(index == quotes.length){
      index = 0;
    }

    $('#quote div blockquote').html("&ldquo;" + quotes[index].text + "&rdquo;");

    $('#quote div em').html("&ndash; " + quotes[index].cite);
    
    $("#quote div a").attr("href", quotes[index].link);

    $('#quote div').fadeIn('slow');

  });
}

$(document).ready(function(){
  window.setInterval('rotateQuote()', 10000);
});