<!-- 
function getCSS()
{
 datetoday = new Date();
 timenow=datetoday.getTime();
 datetoday.setTime(timenow);
 thehour = datetoday.getHours();

 if (thehour > 17)
  display = "./other/css/main5.css";
   else if (thehour > 14)
  display = "./other/css/main4.css";
 else if (thehour > 11)
  display = "./other/css/main3.css";
 else if (thehour > 5)
  display = "./other/css/main2.css";
 else
  display = "./other/css/main.css";
 var css = '<';  css+='link rel="stylesheet" href=' + display + ' \/';  css+='>';
 document.write(css);
}
//-->
