function initLoadAnim() {
  $('.home').wrap('<div class="home-loading"></div>').hide();
  var main = new Image();
  $(main).one('load', showBackground);
  main.src = 'images/home.jpg';
}

function showBackground() {
  $('.home .feature').hide();
  $('.home-loading').replaceWith($('.home'));
  $('.home')
    .css('height', 219)
    .fadeIn(750, function() {
      $('.home').animate({ height : 434 }, 1000, 'easeOutExpo', showEachFeature);
    });
}

function showEachFeature() {
  $('.home .feature').each(function(i) {
    var el = this;
    setTimeout(function() {
      $(el).fadeIn(1500);
    }, i * 250);
  });
}

$(initLoadAnim);
