// $(document).ready(function() {
//   $("html").addClass("js");
// });

/* adapted from http://snook.ca/archives/javascript/simplest-jquery-slideshow */
$(document).ready(function() {
  $(function(){
    $('#quotes li:first-child').show();
      setInterval(function(){
        $('#quotes li:first-child').fadeOut(1000)
           .next('#quotes li').delay(1000).fadeIn(1000)
           .end().appendTo('#quotes');}, 
        13000);
  });
});

$(document).ready(function() {
  $(function(){
//    $('#cards img:gt(0)').hide();
      setInterval(function(){
        $('#cards :first-child').fadeOut()
           .next('#cards img').fadeIn()
           .end().appendTo('#cards');}, 
        4000);
  });
});