<!--
dt = new Date();
h = dt.getHours();
if(h < 7)
  document.bgColor="black";
else if(7<= h && h <= 18)
  document.bgColor="white";
else
  document.bgColor="black";
// -->

