$(document).ready(function() {
  
  var hello = $('#hello');
  var good = $('#good');
  var image = $("#content").find("img");
  
  
  var fadetime = 1;
  hello.hide();
  good.hide();
  image.hide()
  
  hello.delay(500).fadeIn(100);
  
  function say () {
    hello.delay(2000).fadeOut( fadetime, 'linear', function () {
      good.fadeIn( fadetime, 'linear', function () {
        good.delay(2000).fadeOut( fadetime, 'linear', function () {
          hello.fadeIn( fadetime, 'linear', function (){
          say();  
          });
        })
      });
    }); 
  }  
  say();
});

