<!-- Begin
function getCSS()
{
datetoday = new Date();
timenow=datetoday.getTime();
datetoday.setTime(timenow);
thehour = datetoday.getHours();

if (thehour > 20)// between 8PM and Midnight
display = "twilight.css";
else if (thehour > 17)// between 8PM and 5PM
display = "sunset.css";
else if (thehour > 14)// between 5PM and 2pm
display = "afternoon.css";
else if (thehour > 11)// between 2pm and 11AM
display = "noon.css";
else if (thehour > 7)// between 11AM and 7AM
display = "morning.css";
else if (thehour > 4)// between 7AM and 4AM
display = "sunrise.css";
else if (thehour > 1)// between 4AM and 1AM
display = "twilight.css";
else
display = "sunset.css";

var css = '<';  css+='link rel="stylesheet" href=http://fromthecloud.org/wp-content/themes/ftc_6/' + display + ' \/';  css+='>';

document.write(css);
// End -->
}
