today = new Date();
month = today.getMonth() + 1;
months = new Array(12);
months[1] = "Januar";
months[2] = "Februar";
months[3] = "M&auml;rz";
months[4] = "April";
months[5] = "Mai";
months[6] = "Juni";
months[7] = "Juli"
months[8] = "August";
months[9] = "September";
months[10] = "Oktober";
months[11] = "November";
months[12] = "Dezember";
document.write(today.getDate() + ". " +  months[month]);