// JavaScript Document by zzjs.net
today=new Date();
var hours = today.getHours();
var minutes = today.getMinutes();
var seconds = today.getSeconds();
var year = today.getYear();
if (year < 2000) year = year + 1900;
var timeValue = "";
if (hours<6){timeValue="　　　每日一语:<font color='red'><b>别那么拼命！珍惜睡眠时间，珍爱生命！</b></font>"}else if(hours<9){timeValue="<font color='red'><b>早上好！</b></font>"}else if(hours<12){timeValue="<font color='red'><b>上午好！</b></font>"}else if(hours<14){timeValue="<font color='red'><b>中午好！</b></font>"}else if(hours<18){timeValue="<font color='red'><b>下午好！</b></font>"}else if(hours<20){timeValue="<font color='red'><b>傍晚好！</b></font>"}else if(hours<23){timeValue="<font color='red'><b>晚上好！</b></font>"}else{timeValue="　　　每日一语:<font color='red'><b>来几首音乐放松放松，准备睡觉！</b></font>"};
function initArray(){
this.length=initArray.arguments.length
for(var i=0;i<this.length;i++)
this[i+1]=initArray.arguments[i]  }
var d=new initArray("<font color='red'>星期日</font>","<font color='black'>星期一</font>","<font color='black'>星期二</font>","<font color='black'>星期三</font>","<font color='black'>星期四</font>","<font color='black'>星期五</font>","<font color='red'>星期六</font>"); document.write("<font color='black'>",year,"</font>","<font color='black'>年</font>","<font color='black'>",today.getMonth()+1,"</font>","<font color='black'>月</font>","<font color='black'>",today.getDate(),"</font>","<font color='black'>日 </font>",d[today.getDay()+1]," ",timeValue); 
