
      function dailyBackground(node,images,background)
      {
		  var randomimage = Math.floor(Math.random()*images.length);
        //node.style.backgroundImage = "url(\""+images[Math.floor(new Date().getTime()/86400000)%images.length]+"\")";
		node.style.backgroundImage = "url(\""+images[randomimage]+"\")"; 
//		console.log (background[randomimage]);
		_color = background[randomimage];
		//if (randomimage==1){
		//	_color = "white";
//	}
      }

