	      function dailyBackground(images)
      {
        document.body.style.backgroundColor= "#000000";
        document.body.style.backgroundImage = "url(\""+images[Math.floor(Math.random()*images.length)]+"\")";
        document.body.style.backgroundPosition = "right top";
        document.body.style.backgroundRepeat= "no-repeat";
      }

