$(document).ready(function(){

$('.objekt-big-picture-fade img:gt(0)').hide();
    setInterval(function(){
      $('.objekt-big-picture-fade :first-child').fadeOut(1000)
         .next('img').fadeIn(1000)
         .end().appendTo('.objekt-big-picture-fade');}, 
      4000);
});

