
/********************************************* edit these values to suit *********************************************/
var bg1='images/bg/bg1.jpg';
var bg2='images/bg/bg2.jpg';
var bg3='images/bg/bg5.jpg';
var bg4='images/bg/bg6.jpg';
var bg5='images/bg/bg8.jpg';
var bg6='images/bg/bg9.jpg';
var bg7='images/bg/bg10.jpg';
var bg8='images/bg/falala.jpg';

/*********************************************************************************************************************/

var randBG=[bg1,bg2,bg3,bg4,bg5,bg6,bg7,bg8]; // Depend on the number of your background images.
window.onload=function() {
   num=Math.floor(Math.random()*randBG.length);
   document.body.style.background='url('+randBG[num]+')';
   document.body.style.backgroundPosition='top center';
   document.body.style.backgroundRepeat='no-repeat';
   document.body.style.backgroundAttachment='fixed';
 }
