function getCalendarDate() {
  var months = new Array(13);
  months[0]  = "jan";
  months[1]  = "feb";
  months[2]  = "mar";
  months[3]  = "apr";
  months[4]  = "may";
  months[5]  = "jun";
  months[6]  = "jul";
  months[7]  = "aug";
  months[8]  = "sep";
  months[9]  = "oct";
  months[10] = "nov";
  months[11] = "dec";
  var now         = new Date();
  var monthnumber = now.getMonth();
  var monthname   = months[monthnumber];
  var monthday    = now.getDate();
  var year        = now.getYear();
  if(year < 1000) { 
    year = '0' + (year - 100); 
  } else {
    year = year - 2000;
    if(year < 10) {
      year = '0' + year;
    }
  }
  var dateString = monthname + '.' + monthday + '.' + year;
  return dateString;
}
$(document).ready(function() {
  var date = getCalendarDate();
  $('#heading_date').html(date);
});

