// JavaScript Document

function dailyBackground(node,images)
      {
        node.style.backgroundImage = "url(\""+images[Math.floor(new Date().getTime()/1000)%images.length]+"\")";
      }
