$("#banner").ready(function() {
  $.ajax({
    url: "segment/banner.html",
    success: function(data) {
      $("#banner").html(data);
    },
    error: function(xhr, result, error) {
    // TODO rescue here
    }
  });
});

$("#footer").ready(function() {
  $.ajax({
    url: "segment/footer.html",
    success: function(data) {
      $("#footer").html(data);
    },
    error: function(xhr, result, error) {
    // TODO rescue here
    }
  });
});
