function process(){} 
   today = new Date() 
   if(today.getMinutes() < 10) { 
     pad = "0"} 
   else 
     pad = ""; 
   if((today.getHours() < 12) && (today.getHours() >= 6)) 
   {  document.write("<table width='100%' height='100px' cellspacing='0' cellpadding='0' border='0' align='center' background='blue/gradients/morning.jpg'><tr><td>")} 
   if((today.getHours() >= 12) && (today.getHours() < 18))
   {  document.write("<table width='100%' height='100px' cellspacing='0' cellpadding='0' border='0' align='center' background='blue/gradients/day.jpg'><tr><td>")} 
   if((today.getHours() >= 18) && (today.getHours() <= 23))  
   {  document.write("<table width='100%' height='100px' cellspacing='0' cellpadding='0' border='0' align='center' background='blue/gradients/morning.jpg'><tr><td>")} 
   if((today.getHours() >= 0) && (today.getHours() <= 5)) 
   {  document.write("<table width='100%' height='100px' cellspacing='0' cellpadding='0' border='0' align='center' background='blue/gradients/night.jpg'><tr><td>")}; 
// end hiding contents --> 