function getCSS()
{
datetoday = new Date();
timenow=datetoday.getTime();
datetoday.setTime(timenow);
thehour = datetoday.getHours();

if (thehour > 20)
display = "css/styleevening.css";
else if (thehour > 17)
display = "css/styleafternoon.css";
else if (thehour > 14)
display = "css/styleafternoon.css";
else if (thehour > 11)
display = "css/styleafternoon.css";
else if (thehour > 7)
display = "css/styleafternoon.css";
else if (thehour > 4)
display = "css/stylemorning.css";
else if (thehour > 1)
display = "css/stylemorning.css";
else
display = "css/styleafternoon.css";

var css = '<';  css+='link rel="stylesheet" href=' + display + ' \/';  css+='>';

document.write(css);
}
