画像のfadeIn、fadeOutに問題があります。画像は適切な遅延なしに読み込まれています。コードは次のとおりです。
$(function goback(){
$("#img1").fadeIn("slow").delay(5000).fadeOut("slow");
$("#img2").delay(5000).fadeIn("slow").delay(5000).fadeOut("slow");
$("#img3").delay(5000).fadeIn("slow").delay(5000).fadeOut("slow");
(function(){
setTimeout(goback(), 5000);
})();
});