time=(new Date()).getHours();
if(time>=5 && time<10){
document.write("<body background=/images/bg01.jpg>");
}else if(time>=10 && time<17){
document.write("<body background=/images/bg02.jpg>");
}else if(time>=17 && time<19){
document.write("<body background=/images/bg03.jpg>");
}else if(time>=19 && time<23){
document.write("<body background=/images/bg04.jpg>");
}else if(time<5 || time>=23){
document.write("<body background=/images/bg05.jpg>");
}
