today_date= new Date(); var monthname= new Array(); monthname[0]="Styczeń"; monthname[1]="Luty"; monthname[2]="Marzec"; monthname[3]="Kwiecień"; monthname[4]="Maj"; monthname[5]="Czerwiec"; monthname[6]="Lipiec"; monthname[7]="Sierpień"; monthname[8]="Wrzesień"; monthname[9]="Październik"; monthname[10]="Listopad"; monthname[11]="Grudzień"; mon=monthname[today_date.getMonth()]; d = today_date.getDate(); y = today_date.getFullYear(); h = today_date.getHours(); min = today_date.getMinutes(); s = today_date.getSeconds(); if (h<10) {h="0"+h;}; if (s<10) {s="0"+s;}; if (min<10) {min="0"+min;} Edit1 - h+":"+min+":"+s; Edit2 - d+" "+mon+" "+y; ---------- function clock(){ time=new Date(); seconds = time.getSeconds(); minutes = time.getMinutes(); hours = time.getHours(); hours = hours + (minutes/60); seconds = seconds*6; minutes = minutes*6; hours = hours*30; s._rotation=seconds+180; m._rotation=minutes+180; h._rotation=hours+180; } cykcyk = setInterval(clock,100);