/* změna pozadí podle času */

var cas=new Date();
hodina=cas.getHours()+1;

if (hodina < 5 ) {
   document.write('<link rel=stylesheet type=text/css href=/public/themes/ksoft/night.css />')
};

if (hodina > 20 ) {
   document.write('<link rel=stylesheet type=text/css href=/public/themes/ksoft/night.css />')
};
