var tdays = new Array("sunnuntai","maanantai","tiistai","keskiviikko","torstai","perjantai","lauantai");
var tmonths = new Array("tammi","helmi","maalis","huhti","touko","kes&auml;","hein&auml;","elo","syys","loka","marras","joulu");
var vnow = new Date();
var vday = vnow.getDate();
var vtoday = tdays[vnow.getDay()];
var vyear = vnow.getFullYear();
var vmonth = tmonths[vnow.getMonth()];

function showdate() {
  document.write("T&auml;n&auml;&auml;n on "+vtoday+" "+vday+". "+vmonth+"kuuta "+vyear);
}


