
<!--
//Feel free to copy and modify this script, but please keep the comment lines!
//Written by Mattias Sjöberg 8/8-1996
//-----------------------------------------
//| mattias.sjoberg@swipnet.se |
//|---------------------------------------|
//| //\\ //\\ /// | |
//| // \\// \\ / | Advertise |
//|// \\ /// | |
//| Mattias / | Here |
//| Sjoberg /// | |
//|---------------------------------------|
//| www.geocities.com/SiliconValley/7116 |
//| Vote for my page the above URL |
//-----------------------------------------


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

//18-19 night
if (hours > 17 && hours < 20){
document.write('<body bgcolor=#215591>')
}

//20-21 night
if (hours > 19 && hours < 22){
document.write('<body bgcolor=#030617>')
}

//22-4 night
if (hours > 21 || hours < 5){
document.write('<body bgcolor=#000000>')
}

//9-17 day
if (hours > 8 && hours < 18){
document.write('<body bgcolor=#2F77CB>')
}

//7-8 day
if (hours > 6 && hours < 9){
document.write('<body bgcolor=#101748>')
}

//5-6 day
if (hours > 4 && hours < 7){
document.write('<body bgcolor=#060A1E>')
}


//-->
