// JavaScript Document


<!-- This script loads a random background image
function swapPic() 
 { 
 if(document.getElementById) 
   { 
   var thePicture=document.getElementById("Background"); 
   var picPath="http://www.lennoxm.com/TestSite/images/lennox"+rnd(17)+".jpg"; 
   thePicture.style.background="url("+picPath+")"; 
   } 
 } 
  
function rnd(n) 
 { 
 return Math.floor(Math.random() * n) + 1; 
 } 
  