$(function() {
  var quotes = $('.quote-area ul li');
  quotes.hide();
  $(quotes[0]).fadeIn('slow');
  var i = 1;
  function cycle() {
    quotes.hide();
    $(quotes[i]).fadeIn('slow');
    i = (i==(quotes.length-1) ? 0 : i+1);
  }
  setInterval(cycle, 10000);
})