/* adapted from http://snook.ca/archives/javascript/simplest-jquery-slideshow */
$(document).ready(function() {
  $(function(){
//    $('#photos img:gt(0)').hide();
      setInterval(function(){
        $('#photos :first-child').fadeOut(1000)
           .next('#photos img').fadeIn(1000)
           .end().appendTo('#photos');}, 
        5000);
  });
});