// © copyright Sibran Lens
// Leave this comment if you want to use this script for your website
// http://blog.e-ss.be


function CSSTimeSwitch()
{
 datetoday = new Date();
 timenow=datetoday.getTime();
 datetoday.setTime(timenow);
 thehour = datetoday.getHours();

 if (thehour >= 20)
  display = "evening";
 else if (thehour >= 17)
  display = "late-afternoon";
 else if (thehour >= 13)
  display = "afternoon";
 else if (thehour >= 11)
  display = "noon";
 else if (thehour >= 7)
  display = "morning";
 else if (thehour >= 1)
  display = "night";
 else
  display = "general";

 var thebody =	document.getElementById("bodyTag");
 
 thebody.className= display;
 									

}