﻿$(document).ready(function() {

    var now = new Date();
    document.getElementById('date-block-day').innerHTML = now.format('d');
    document.getElementById('date-block-month').innerHTML = now.format('M').toUpperCase();
    document.getElementById('date-block-year').innerHTML = now.format('Y');


});