$(document).ready(function() {
  function vaheta1() {
    $("div#pilt1").fadeOut("slow");
    $("div#pilt2").fadeIn("slow");
    setTimeout(vaheta2, 10000);
  };

  function vaheta2() {
    $("div#pilt2").fadeOut("slow");
    $("div#pilt3").fadeIn("slow");
    setTimeout(vaheta3, 10000);
  };

  function vaheta3() {
    $("div#pilt3").fadeOut("slow");
    $("div#pilt4").fadeIn("slow");
    setTimeout(vaheta4, 10000);
  };

  function vaheta4() {
    $("div#pilt4").fadeOut("slow");
    $("div#pilt1").fadeIn("slow");
    setTimeout(vaheta1, 10000);
  };

  setTimeout(vaheta1, 10000);

});


