// JavaScript Document
today=new Date();
var giorno = new Array("Domenica","Lunedì","Martedì","Mercoledì","Giovedì","Venerdì","Sabato"); 
var data = ""; 
data+=giorno[eval(today.getDay())]; 
tip=0;
if((today.getHours()>4)&&(today.getHours()<9))
{
	url='http://www.jointweb.it/images/bg_vgray2.jpg';
	tip=0;
}
if((today.getHours()>8)&&(today.getHours()<18))
{
url='http://www.jointweb.it/images/bg_vgray2.jpg';
tip=1;
}
if((today.getHours()>17)&&(today.getHours()<21))
{
url='http://www.jointweb.it/images/bg_vgray2.jpg';
tip=2;
}
if((today.getHours()>20)||(today.getHours()<5))
{
url='http://www.jointweb.it/images/bg_vgray2.jpg';
tip=3;
}
if((data=="Sabato")||(data=="Domenica"))
{
url='http://www.jointweb.it/images/bg_vgray2.jpg';
tip=4;
}
document.write('<style>body{background-image:url(',url,');background-attachment:fixed;background-position:top middle;background-repeat:no-repeat;');
if (tip==0)document.write('background-color: #A8A8A8;}<\/style>');
if (tip==1)document.write('background-color: #196F16;}<\/style>');
if (tip==2)document.write('background-color: #0172B6;}<\/style>');
if (tip==3)document.write('background-color: #221040;}<\/style>');
if (tip==4)document.write('background-color: #402416;}<\/style>');