// 	Random Number 
			var numRand = Math.floor(1 + Math.random()*12);
					document.writeln(numRand); // prints numRand
					document.body.style.backgroundImage='url(imag/'+numRand+'.jpg)'; //works
					document.body.style.backgroundRepeat='no-repeat';
					document.body.style.backgroundPosition='center top';
					document.body.style.backgroundAttachment='fixed';
					
					var bgColor = new Array();
					//bgColor[0]="red";
					bgColor[1]="#B3BD78";	 
					bgColor[2]="#FBBC00";
					bgColor[3]="#DFB88B";	 
					bgColor[4]="#F0D7AE";	 
					bgColor[5]="#F3F7FF";	  
					bgColor[6]="#D8C492";	 
					bgColor[7]="#D4AD48";	 
					bgColor[8]="#BC9B66";	 
					bgColor[9]="#BA8923";	 
					bgColor[10]="#1E72BB";	 
					bgColor[11]="#0E1420";	 
					bgColor[12]="#EDF0FF"; 	 
					 
					x=bgColor[numRand];
					//document.write(x);   // prints bg color
					document.body.style.backgroundColor = x;		

