// JavaScript Document

function swapPic() 
 { 
 if(document.getElementById) 
   { 
   var thePicture=document.getElementById("rndImage"); 
   var picPath="images/home-image"+rnd(3)+".jpg"; 
   thePicture.style.background="url("+picPath+")"; 
   } 
 } 
  
function rnd(n) 
 { 
 return Math.floor(Math.random() * n) + 1; 
 } 

