<!-- Begin
function getCSS()
{
 datetoday = new Date();
 timenow=datetoday.getTime();
 datetoday.setTime(timenow);
 thehour = datetoday.getHours();

 if (thehour > 18)
  display = "../common/css/night.css";
 else if (thehour > 15)
  display = "../common/css/evening.css";
 else if (thehour > 4)
  display = "../common/css/day.css";
 else
  display = "../common/css/night.css";
 var css = '<';  css+='link rel="stylesheet" href=' + display + ' \/';  css+='>';
 document.write(css);
// End -->
}

