handling resize and scroll events


  
  function calculateDimensions() {
  windowWidth = win.width();
  windowHeight = win.height();
  fullHeight = $('#main').height();
  scrollHeight = fullHeight - windowHeight;
  }
  
  function handleResize() {
  calculateDimensions();
  resizeBackgroundImage();
  handleScroll();
  }