var thetimer = null;

function showtime() {
  DaysOfWeek = new Array(7);
  DaysOfWeek[0] = "Nedeľa";
  DaysOfWeek[1] = "Pondelok";
  DaysOfWeek[2] = "Utorok";
  DaysOfWeek[3] = "Streda";
  DaysOfWeek[4] = "Štvrtok";
  DaysOfWeek[5] = "Piatok";
  DaysOfWeek[6] = "Sobota";
  Months = new Array(12);
  Months[0] = "Január";
  Months[1] = "Február";
  Months[2] = "Marec";
  Months[3] = "Apríl";
  Months[4] = "Máj";
  Months[5] = "Jún";
  Months[6] = "Júl";
  Months[7] = "August";
  Months[8] = "September";
  Months[9] = "Október";
  Months[10] = "November";
  Months[11] = "December";
  var now = new Date();
  var year = now.getYear();
  if (year < 2000)
  	year += 1900; 
  var mins = ((now.getMinutes() < 10) ? ":0" : ":") + now.getMinutes();
  var secs = ((now.getSeconds() < 10) ? ":0" : ":") + now.getSeconds();
  window.status = " " + DaysOfWeek[now.getDay()] + "     " + now.getDate() + ". " + Months[now.getMonth()] + " " + year + "     " + now.getHours() + mins + secs;
  thetimer = setTimeout("showtime()",1000);
  document.title = "timing.sk - profesionálna časomiera - " + window.status;
//  cdwdaytime();  
}