oggi = new Date()

function orario()
{

 oggi = new Date()
 var ora = (oggi.getHours())
 if(ora==2 || ora==1 || ora==0)
  document.write('<table width="780" border="0" cellspacing="0" cellpadding="0" background="img/bg_06.gif">');
 else if(ora==3 || ora==23)
  document.write('<table width="780" border="0" cellspacing="0" cellpadding="0" background="img/bg_05.gif">');
 else if(ora==4 || ora==22)
  document.write('<table width="780" border="0" cellspacing="0" cellpadding="0" background="img/bg_04.gif">'); 
 else if(ora==5 || ora==21)
  document.write('<table width="780" border="0" cellspacing="0" cellpadding="0" background="img/bg_03.gif">');
 else if(ora==6 || ora==20)
  document.write('<table width="780" border="0" cellspacing="0" cellpadding="0" background="img/bg_02.gif">'); 
 else if(ora==7 || ora==8 || ora==9 || ora==10 || ora==11 || ora==12 || ora==13 || ora==14 || ora==15 || ora==16 || ora==17 || ora==18 || ora==19)
  document.write('<table width="780" border="0" cellspacing="0" cellpadding="0" background="img/bg_01.gif">');   
 else('<table width="780" border="0" cellspacing="0" cellpadding="0" background="img/bg_01.gif">');
 //return (ora);
}

function chiuditabella()
  {
  document.write('</table>')
  }
