(function(){
  jQuery.ajax({
          type: "POST",
          url: "/copyright-year/copyright.do",
          cache: false,
          dataType: "json",
          success: function(data) {
            jQuery("#year4Copy").text(data.year);
          },
          error: function() {
            jQuery("#year4Copy").text(new Date().getFullYear());
          }
      });
})();

