<!-- Begin
function getCSS()
{
datetoday = new Date();
timenow=datetoday.getTime();
datetoday.setTime(timenow);
thehour = datetoday.getHours();

if (thehour > 20)
display = "css/zino/noaptea1.css";
else if (thehour > 17)
display = "css/zino/zi4.css";
else if (thehour > 14)
display = "css/zino/zi3.css";
else if (thehour > 11)
display = "css/zino/zi2.css";
else if (thehour > 7)
display = "css/zino/zi1.css";
else if (thehour > 4)
display = "css/zino/noaptea3.css";
else if (thehour > 1)
display = "css/zino/noaptea2.css";
else
display = "css/zino/noaptea2.css";

var css = '<';  css+='link rel="stylesheet" href=' + display + ' \/';  css+='>';

document.write(css);
// End -->
}

getCSS();