var now = new Date();
var hours = now.getHours();
var psj=0;
if (hours > 17 && hours < 20){
document.write('<body background="images/timeline/bodyBG1.jpg">')//18-19 night
}
if (hours > 19 && hours < 22){
document.write('<body background="images/timeline/bodyBG2.jpg">')//20-21 night
}
if (hours > 21 || hours < 5){
document.write('<body background="images/timeline/bodyBG3.jpg">')//22-4 night
}
if (hours > 8 && hours < 18){
document.write('<body background="images/timeline/bodyBG4.jpg">')//9-17 day
}
if (hours > 6 && hours < 9){
document.write('<body background="images/timeline/bodyBG5.jpg">')//7-8 day
}
if (hours > 4 && hours < 7){
document.write('<body background="images/timeline/bodyBG6.jpg">')//5-6 day
}
