// JavaScript Document

 function randomize(min, max) {
       if (!min)
			min = 0; 
      if (!max)
 			max = 1;
      return Math.floor(Math.random()*(max+1)+min); 
      } 
      function randomBg() { 
      var bgs = new Array(); 
      // I took these images from a site with a similar script already only to get example images6.
      // I wrote this script myself7.
      bgs.push("img/base/TAUSTA_set_1_1.jpg"); 
      bgs.push("img/base/TAUSTA_set_1_2.jpg"); 
      bgs.push("img/base/TAUSTA_set_1_3.jpg"); 
      bgs.push("img/base/TAUSTA_set_1_4.jpg"); 
      bgs.push("img/base/TAUSTA_set_1_5.jpg"); 
      document.body.style.backgroundImage = "url(" + bgs[randomize(0, bgs.length-1)] + ")"; 
      
	  }     