//<![CDATA[


var Resize;
$(document).ready(function() {
    Resize = new ResizeBottom();
    Resize.initialize();
});

// Begin Class
function ResizeBottom() {

    // The radio list, its options, and the divs containing form elements
    this.windowheight = $(window).height();
    this.docheight = $(document).height();
    var jsThis = this;

    this.initialize = function() {
        this.fixBottom();
    }

    // Changes which form elements are displayed to the user
    this.fixBottom = function() {

        // Find out which option is selected
        var coords = $('#foot').offset();

        if (this.docheight > coords.top){
            var gap = this.docheight - coords.top;
            $('#foot').css('height', gap);
        }
    }


}

//]]>

