  dat = new Date();
  month = dat.getMonth();
  monthname = new Array();
  monthname[0] = "januari";
  monthname[1] = "februari";
  monthname[2] = "maart";
  monthname[3] = "april";
  monthname[4] = "mei";
  monthname[5] = "juni";
  monthname[6] = "juli";
  monthname[7] = "augustus";
  monthname[8] = "september";
  monthname[9] = "oktober";
  monthname[10] = "november";
  monthname[11] = "december";
  day = dat.getDate();
  year = dat.getFullYear();
  document.write('<span class="topNavGray">' + day + ' ' + monthname[month] + ' ' + year + '</span>');
