Hi,
Easiest way is to set a higher max height for the page, so that the footer is never hanging like that:
.main-inner { max-height: 700px; }
If you want to go the javascript way instead, here is a sticky footer script that works with different footer heights:
http://www.drupalcoder.com/blog/cross-browser-sticky-footer-with-fluid-height-using-jquery.html
To limit the width of the footer, do:
#footer-bottom { margin: 0 auto; max-width: 1280px; }