// JavaScript Document
function getCSS()
{
 datetoday = new Date();
 timenow=datetoday.getTime();
 datetoday.setTime(timenow);
 thehour = datetoday.getHours();

 if (thehour > 17)
  display = "css/top_night.css";
   else if (thehour < 6)
  display = "css/top_night.css";
 else
  display = "css/top_noon.css";
 var css = '<';  css+='link rel="stylesheet" href=' + display + ' \/';  css+='>';
 document.write(css);
// End -->
}

