<!-- Begin
function getCSS()
{
datetoday = new Date();
timenow=datetoday.getTime();
datetoday.setTime(timenow);
thehour = datetoday.getHours();

if (thehour > 7 && thehour <17)
display = "stylin-day.css";
else
display = "stylin-nite.css";

var css = '<';  css+='link rel="stylesheet" href=../../' + display + ' \/';  css+='>';

document.write(css);
// End -->
}