var quotes = [
  {
    text: "I would just like to thank you for taking me and my friends to Windsor... The service was excellent and helped to make it a really great night. I will definitely be recommending you to friends.",
    cite: "Ella T, May 2009"
  },
  {
    text: "Thank you so much that's really kind of you and will definitely remember you / pass on your details to anyone needing transport! Thanks again for your patience and help!",
    cite: "Emma C, April 2009"
  },
  {
    text: "Many thanks for the great service on Saturday; it made our visit to London a perfect day. Please also pass on our thanks to Andy the coach driver.",
    cite: "Sally J, January 2009"
  },
  {
    text: "The staff are very friendly... The minibus was exceptionally clean and comfortable... I would highly recommend their service and we will definitely be using them again for our next trip!",
    cite: "Alice, August 2007"
  },
  {
    text: "Good Communication helped me organise the trip and provided excellent service throughout, making my job a lot easier.",
    cite: "Dave, March 2007"
  },
  {
    text: "Driver was very helpful and we arrived promptly for a great day out in Bournemouth. I would use the company again.",
    cite: "Mrs R D, January 2007"
  }
];

function rotateQuote(){
  $('#quote blockquote, #quote em').fadeOut('slow', function(){
    
    rotateQuote.index++;
    
    if(rotateQuote.index == quotes.length){
      rotateQuote.index = 0;
    }
    
    $('#quote blockquote').html("“" + quotes[rotateQuote.index].text + "”");
    
    $('#quote em').html(quotes[rotateQuote.index].cite);
    
    $('#quote blockquote, #quote em').fadeIn('slow');
  });
}
rotateQuote.index = 1;

$(document).ready(function(){
  window.setInterval('rotateQuote()', 10000);
});