//
window.setRandomPic = function () {
 var PicsURLs = [];
/* generated start */
    PicsURLs.push('/images/banner/img1.jpg');
    PicsURLs.push('/images/banner/img2.jpg');
    PicsURLs.push('/images/banner/img3.jpg');
    PicsURLs.push('/images/banner/img4.jpg');
    PicsURLs.push('/images/banner/img5.jpg');
    PicsURLs.push('/images/banner/img6.jpg');
    PicsURLs.push('/images/banner/img7.jpg');
    PicsURLs.push('/images/banner/img8.jpg');
    PicsURLs.push('/images/banner/img9.jpg');
    PicsURLs.push('/images/banner/img10.jpg');
    /* generated end */
 if ( PicsURLs.length == 0 ) return;
 function getRandomValueFrom(array) {
  return array[Math.floor(Math.random()*array.length)]
 }
 var picURL = getRandomValueFrom(PicsURLs);
 document.write(
  '<style type="text/css">'
  +'html body div#topStory, #topStory { background-image: url(' + picURL + ') };'
  +'<\/style>' )
 ;
}
window.setRandomPic();
