var datum = new Date();
var mesic= datum.getMonth();
mesic++;
if (datum.getDay()==0) {document.write("neděle")}
if (datum.getDay()==1) {document.write("pondělí")}
if (datum.getDay()==2) {document.write("úterý")}
if (datum.getDay()==3) {document.write("středa")}
if (datum.getDay()==4) {document.write("čtvrtek")}
if (datum.getDay()==5) {document.write("pátek")}
if (datum.getDay()==6) {document.write("sobota")}

document.write(' '+datum.getDate()+'. ')

if (mesic==1) {document.write("ledna")}
if (mesic==2) {document.write("února")}
if (mesic==3) {document.write("března")}
if (mesic==4) {document.write("dubna")}
if (mesic==5) {document.write("května")}
if (mesic==6) {document.write("června")}
if (mesic==7) {document.write("července")}
if (mesic==8) {document.write("srpna")}
if (mesic==9) {document.write("září")}
if (mesic==10) {document.write("října")}
if (mesic==11) {document.write("listopadu")}
if (mesic==12) {document.write("prosince")}


document.write(' '+datum.getYear())
