/*var numberOfPics = 6;

// plus one number for correctness
numberOfPics = rnd(numberOfPics)+1;

function swapPic() {
   var picPath='/v5Files/newsite/0/bottomFull_'+numberOfPics+'.jpg';
     document.getElementById('loc_wrapper').style.backgroundImage='url('+picPath+')';

   }
    
function rnd(n) {
   return Math.floor(Math.random() * n);
   }*/