
    
  var month_names = new Array("janu&aacute;ra","febru&aacute;ra","marca","apr&iacute;la","m&aacute;ja","j&uacute;na","j&uacute;la","augusta","septembra","okt&oacute;bra","novembra","decembra");
  var day_names   = new Array("nede&#318;a","pondelok","utorok","streda","&#353;tvrtok","piatok","sobota");
  var now         = new Date();
  var prnt_stuff_date;
  var cen_str
  
  var stuff       = new Array();
  stuff[1]        = "1<SUP></SUP>";
  stuff[2]        = "2<SUP></SUP>";
  stuff[3]        = "3<SUP></SUP>";
  stuff[21]       = "21<SUP></SUP>";
  stuff[22]       = "22<SUP></SUP>";
  stuff[23]       = "23<SUP></SUP>";
  stuff[31]       = "31<SUP></SUP>";
  
  if ((now.getDate()==1) || (now.getDate()==2) || (now.getDate()==3) || (now.getDate()==21) || (now.getDate()==22) || (now.getDate()==23) || (now.getDate()==31)) 
  prnt_stuff_date = stuff[now.getDate()];
  else
          prnt_stuff_date = now.getDate()+"";

  if(now.getFullYear() >= 2005 )
  cen_str = "";
  else
  cen_str = "";
        
  print_str =  day_names[now.getDay()]+", "+prnt_stuff_date+". "+month_names[now.getMonth()]+" "+cen_str+now.getFullYear();
  document.write('<span class="male">'+print_str+'</span>');

