
var now = new Date();
var hours = now.getHours();
var psj=0;

//18-19 night 1
if (hours > 17 && hours < 20){
document.write('<td height="245" align="center" valign="bottom" background="images/sky1.jpg">&nbsp;</td>')
}

//20-21 night 2
if (hours > 19 && hours < 22){
document.write('<td height="245" align="center" valign="bottom" background="images/sky2.jpg">&nbsp;</td>')
}

//22-4 night 3
if (hours > 21 || hours < 5){
document.write('<td height="245" align="center" valign="bottom" background="images/sky3.jpg">&nbsp;</td>')
}

//9-17 day 4
if (hours > 8 && hours < 18){
document.write('<td height="245" align="center" valign="bottom" background="images/sky4.jpg">&nbsp;</td>')
}

//7-8 day 5
if (hours > 6 && hours < 9){
document.write('<td height="245" align="center" valign="bottom" background="images/sky5.jpg">&nbsp;</td>')
}

//5-6 day 6
if (hours > 4 && hours < 7){
document.write('<td height="245" align="center" valign="bottom" background="images/sky6.jpg">&nbsp;</td>')
}


//-->