$(function(){
  var img = $("#img img");
  var count = 1;
  var time = 5000;
  setInterval(function(){
    img.eq(count).fadeIn('slow');
    img.eq(count-1).fadeOut('slow');
    count++;
    if (count == 5) { count = 0; }
  },time);
});

