(function($){
  $(function() {
    var images = [
     
       $('<img alt="Mountains" src="http://www.ayerhoffman.com/img/mountains_narrow.jpg" class="homepage-image">'
       ),
 
       $('<img alt="The Graves Lighthouse in Boston Harbor." src="http://www.ayerhoffman.com/img/lighthouseedited.JPG" class="homepage-image">'
       )];
    $.each(images, function() {
      this.insertBefore ($('.homepage-image:first'));
    });

    setInterval((function($){
      return function(){
        var topImage = $('.homepage-image:last');
        topImage.fadeOut('slow', function(){
          $(this).remove().insertBefore('.homepage-image:first').css({opacity: '', display: ''});
        });
       };
      })($), 10000);
          
  });
})(jQuery);

