// JavaScript Document
<!-- 
function enlargePic(photoNum) 
 { 
 if(document.getElementById) 
   { 
   var thePicture=document.getElementById("member_info"); 
   var picPath="images/photo"+photoNum+".jpg"; 
   thePicture.style.background="url("+picPath+") no-repeat center center"; 
   } 
 } 
 function defaultPic() 
 { 
 if(document.getElementById) 
   { 
   var thePicture=document.getElementById("member_info"); 
   var picPath="images/picture-members.jpg"; 
   thePicture.style.background="url("+picPath+") no-repeat center center"; 
   } 
 } 
 



