// JavaScript for re-positioning the body background
      window.onresize = resize;
      
      function resize() {
        var browserWidth = document.body.offsetWidth;
        var bgroundPos = document.body.style.backgroundPosition;
        
        var bgroundPos_1 = "center 95px"  ;
        var bgroundPos_2 = "-100px 95px"  ;
        
        if (browserWidth >= 1000 && bgroundPos != bgroundPos_1) {
          document.body.style.backgroundPosition = bgroundPos_1;
        } else if (browserWidth < 1000 && bgroundPos != bgroundPos_2)  {
          document.body.style.backgroundPosition = bgroundPos_2;
        } else {
          return true;
        }
        return true;
      }

