body 안에...
<script language="JavaScript">
day=new Date()
x=day.getHours()
//0시부터 12시사이의 시간에 나타낼 배경주소
if(x>=0 && x<12) {
document.write('<body background="이미지주소">')
} else
//13시부터 24시까지 나타낼 배경주소
if(x>=13 && x<24) {
document.write('<body background="이미지주소">')
}
</script>
bibaram